es6.string.small.js 193 B

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