es6.string.anchor.js 205 B

1234567
  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. });