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