Files
2025-07-24 17:21:45 +08:00

8 lines
207 B
JavaScript

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