0.0.2 • Published 11 years ago

dank-cast v0.0.2

Weekly downloads
7
License
-
Repository
github
Last release
11 years ago

node-dank-cast

Cast values to more specific types with default values if they can't be casted

install

npm install dank-cast

examples

var cast = require('dank-cast');

cast.int('asdf', 0); // 0
cast.int('12345', 0); // 12345
cast.string(null, 'default value); //default value
cast.bool('yes'); //true
cast.float('1234.34); //1234.34

license

MIT

0.0.2

11 years ago