wallet-core/node_modules/core-js/modules/es6.string.bold.js

8 lines
185 B
JavaScript
Raw Normal View History

2017-05-28 00:38:50 +02:00
'use strict';
// B.2.3.5 String.prototype.bold()
2017-08-14 05:01:11 +02:00
require('./_string-html')('bold', function (createHTML) {
return function bold() {
2017-05-28 00:38:50 +02:00
return createHTML(this, 'b', '', '');
2017-08-14 05:01:11 +02:00
};
});