Version 1
[yaffs-website] / node_modules / core-js / library / modules / es6.string.anchor.js
1 'use strict';
2 // B.2.3.2 String.prototype.anchor(name)
3 require('./_string-html')('anchor', function(createHTML){
4   return function anchor(name){
5     return createHTML(this, 'a', 'name', name);
6   }
7 });