mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-04-04 21:31:08 +02:00
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
'use strict';
|
|
// B.2.3.3 String.prototype.big()
|
|
require('./_string-html')('big', function (createHTML) {
|
|
return function big() {
|
|
return createHTML(this, 'big', '', '');
|
|
};
|
|
});
|