8 lines
184 B
JavaScript
Raw Normal View History

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