Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 341 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 341 Bytes

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.