Sha256: 60e705b4ab4a601d317f8d5b6ca9677f3d9ae77ef17802cabec0e81fa593fc8c
Contents?: true
Size: 448 Bytes
Versions: 12
Compression:
Stored size: 448 Bytes
Contents
'use strict'; var $ = require('../internals/export'); var createHTML = require('../internals/create-html'); var forcedStringHTMLMethod = require('../internals/forced-string-html-method'); // `String.prototype.small` method // https://tc39.github.io/ecma262/#sec-string.prototype.small $({ target: 'String', proto: true, forced: forcedStringHTMLMethod('small') }, { small: function small() { return createHTML(this, 'small', '', ''); } });
Version data entries
12 entries across 12 versions & 4 rubygems