Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
core-js
/
library
/
modules
/
es6.string.bold.js
blob: ff3ecb9cb7e8506a8a29d3aaf14269b47a9168a6 [
file
]
'use strict'
;
// B.2.3.5 String.prototype.bold()
require
(
'./_string-html'
)(
'bold'
,
function
(
createHTML
)
{
return
function
bold
()
{
return
createHTML
(
this
,
'b'
,
''
,
''
);
};
});