jprichardson / string.js

Extra JavaScript string methods.
http://stringjs.com
1.81k stars 234 forks source link

Support for title case? #188

Closed Swathi8 closed 8 years ago

Swathi8 commented 8 years ago

Is there any support to convert string to title case?

I didn't find any method in stringjs which converts to title case.

davidlesches commented 8 years ago

S( "this is a string" ).titleCase().s

You can also use

S( "this_is_a_string" ).humanize().titleCase().s

Swathi8 commented 8 years ago

@davidlesches thanks!