es6.string.sup.js 185 B

1234567
  1. 'use strict';
  2. // B.2.3.14 String.prototype.sup()
  3. require('./_string-html')('sup', function (createHTML) {
  4. return function sup() {
  5. return createHTML(this, 'sup', '', '');
  6. };
  7. });