summaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es6.string.bold.js
blob: 022cdb07552a2ea0ed09ae5cfb0d41c87140bdde (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', '', '');
  }
});