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