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