aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es6.string.bold.js
blob: ff3ecb9cb7e8506a8a29d3aaf14269b47a9168a6 (plain)
1
2
3
4
5
6
7
'use strict';
// B.2.3.5 String.prototype.bold()
require('./_string-html')('bold', function (createHTML) {
  return function bold() {
    return createHTML(this, 'b', '', '');
  };
});