mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 07:13:46 -05:00
8 lines
185 B
JavaScript
8 lines
185 B
JavaScript
'use strict';
|
|
// B.2.3.14 String.prototype.sup()
|
|
require('./_string-html')('sup', function (createHTML) {
|
|
return function sup() {
|
|
return createHTML(this, 'sup', '', '');
|
|
};
|
|
});
|