aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es6.string.sup.js
blob: a342998813df3042b4a0f4c7e6b9abe1ced981e1 (plain)
1
2
3
4
5
6
7
'use strict';
// B.2.3.14 String.prototype.sup()
require('./_string-html')('sup', function(createHTML){
  return function sup(){
    return createHTML(this, 'sup', '', '');
  }
});