proper-upper-case
v0.1.0
Published
Takes a string and formats it to Proper Noun style case. Ex: "bill MURRAY" would change to "Bill Murray"
Downloads
5
Maintainers
Readme
proper-upper-case
Takes a string and formats it to Proper Noun style case. Ex: "bill MURRAY" would change to "Bill Murray"
#Usage
var toProperUpper = require('proper-upper-case');
console.log(toProperUpper('bill murray'));
// ==> "Bill Murray"
Improvements
Test and add logic to handle punctuation.