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