es.string.sup.js 422 B

123456789101112
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var createHTML = require('../internals/create-html');
  4. var forcedStringHTMLMethod = require('../internals/string-html-forced');
  5. // `String.prototype.sup` method
  6. // https://tc39.es/ecma262/#sec-string.prototype.sup
  7. $({ target: 'String', proto: true, forced: forcedStringHTMLMethod('sup') }, {
  8. sup: function sup() {
  9. return createHTML(this, 'sup', '', '');
  10. }
  11. });