1.0.3 • Published 8 years ago

uncast v1.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

uncast

An utility to uncast an array

Install

Install the package with npm:

$ npm install uncast

Usage

const uncast = require('uncast');
let arr1 = [555];
let newInt = uncast(arr1);
//newInt === 555

let arr2 = [1,2,3,4];
let arr3 = uncast(arr2);
//arr3 = [1,2,3,4]

License

MIT

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago