Repository URL to install this package:
Version:
0.6.0 ▾
|
.. |
index.js |
license |
package.json |
readme.md |
Convert a value to an array
$ npm install --save arrify
const arrify = require('arrify'); arrify('unicorn'); //=> ['unicorn'] arrify(['unicorn']); //=> ['unicorn'] arrify(null); //=> [] arrify(undefined); //=> []
Supplying null
or undefined
results in an empty array.
MIT © Sindre Sorhus