string-fns
v0.1.0
Published
String functions
Downloads
14
Readme
date-fns
String functions in function-per-file style.
Installation
npm install --save string-fns
Usage
var dasherize = require('string-fns/src/dasherize');
var myString = dasherize('HelloThere');
console.log(myString);
//=> hello-there
API
Code is fully documented, checkout source for reference.