linwenling
2023-03-30 0498034d98a44e2de9ae3f68aba75e3903f687a6
1
2
3
4
5
6
7
'use strict';
// B.2.3.8 String.prototype.fontsize(size)
require('./_string-html')('fontsize', function (createHTML) {
  return function fontsize(size) {
    return createHTML(this, 'font', 'size', size);
  };
});