UNPKG

@caeser1996/titlecase

Version:
8 lines 211 B
module.exports = function to_title(string) { return string.replace( /\w\S*/g, function(txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); } ); };