plankton-text
v0.0.5
Published
Text manipulation methods built on top of Plankton namespace.
Readme
Plankton Text
Text manipulation methods built on top of Plankton namespace.
Initialize
var text = window.plankton.text;Or
var text = require('plankton-text');Usage
capitalize
text.capitalize('myText'); // MyTextcamelize
text.camelize('MyClassName'); // myClassName
text.camelize('my class name'); // myClassNameucwords
text.ucwords('my nice title'); // My Nice Title