wallet-core/node_modules/core-js/modules/es6.string.link.js

8 lines
197 B
JavaScript
Raw Normal View History

2017-05-28 00:38:50 +02:00
'use strict';
// B.2.3.10 String.prototype.link(url)
2017-08-14 05:01:11 +02:00
require('./_string-html')('link', function (createHTML) {
return function link(url) {
2017-05-28 00:38:50 +02:00
return createHTML(this, 'a', 'href', url);
2017-08-14 05:01:11 +02:00
};
});