1.0.1 • Published 8 years ago

cast-array v1.0.1

Weekly downloads
17,646
License
MIT
Repository
github
Last release
8 years ago

cast-array Build Status

Ensure a value is an array and wrap it if it is not an array

Install

$ npm install --save cast-array

Usage

var castArray = require('cast-array')

castArray('input')
//=> ['input']

castArray(['input'])
//=> ['input']

API

castArray(value) -> array

value

Required
Type: array / any

A value to wrap in an array (unless it's already an array).

License

MIT © Ben Drucker