aboutsummaryrefslogtreecommitdiff
path: root/node_modules/babel-runtime/node_modules/core-js/modules/es6.string.link.js
blob: d0255edd68ab28ceabb7dbe093a1ede00d354063 (plain)
1
2
3
4
5
6
7
'use strict';
// B.2.3.10 String.prototype.link(url)
require('./_string-html')('link', function (createHTML) {
  return function link(url) {
    return createHTML(this, 'a', 'href', url);
  };
});