string-totitlecase

Convert string to title case.


Keywords
string, to, title, case
License
MIT
Install
npm install string-totitlecase@0.1.3

Documentation

string-totitlecase

NPM

Convert string to title case.

const toTitleCase = require('string-totitlecase');
// toTitleCase(<string>, [separator=/\W+/g])

toTitleCase('Geminid meteor shower')
// 'Geminid Meteor Shower'
toTitleCase('geminid-meteor-shower');
// 'Geminid Meteor Shower'
toTitleCase('geminid_meteor_shower', '_');
// 'Geminid Meteor Shower'