titleize.js 207 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 var makeString = require('./helper/makeString'); module.exports = function titleize(str) { return makeString(str).toLowerCase().replace(/(?:^|\s|-)\S/g, function(c) { return c.toUpperCase(); }); };