UNPKG

inline-assets

Version:

Inline External Assets of HTML/CSS Files

8 lines (6 loc) 207 B
var makeString = require('./helper/makeString'); module.exports = function titleize(str) { return makeString(str).toLowerCase().replace(/(?:^|\s|-)\S/g, function(c) { return c.toUpperCase(); }); };