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