hexo/node_modules/core-js/modules/es6.string.sup.js

8 lines
185 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
'use strict';
// B.2.3.14 String.prototype.sup()
require('./_string-html')('sup', function (createHTML) {
return function sup() {
return createHTML(this, 'sup', '', '');
};
});