1
0
mirror of https://gitlab.com/octtspacc/staticoso synced 2025-04-12 01:01:14 +02:00

8 lines
197 B
JavaScript

'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);
};
});