autocast

Easily and automatically cast common datatypes in JavaScript

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
autocast
0.0.411 years ago11 years agoMinified + gzip package size for autocast in KB

Readme

autocast
Easily and automatically cast common datatypes in JavaScript

Install

Install locally to use as a madule
npm install autocast

Usage

var autocast = require('autocast');

Example

var autocast = require('autocast'),
    x;

x = autocast('5')
// x => 5
x = autocast('5.8')
// x => 5.8
x = autocast('5.8.8')
// x => '5.8.8'
x = autocast('null')
// x => null
x = autocast('true')
// x => true
x = autocast('false')
// x => false
x = autocast('normal string')
// x => 'normal string'

Tests

npm test

License

MIT Licensed