8 lines
185 B
JavaScript
Raw Normal View History

2019-09-13 09:44:33 +07:00
'use strict';
// B.2.3.14 String.prototype.sup()
require('./_string-html')('sup', function (createHTML) {
return function sup() {
return createHTML(this, 'sup', '', '');
};
});