Skip to content

js-fns-incubator/string-fns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.