LimePot
76722fec47
Going to slowly work on a Bulma site, which will end up being the main site. Currently under the /BETA/ folder so Alpha site will still be main site. |
||
---|---|---|
.. | ||
index.js | ||
license | ||
package.json | ||
readme.md |
arrify
Convert a value to an array
Install
$ npm install --save arrify
Usage
const arrify = require('arrify');
arrify('unicorn');
//=> ['unicorn']
arrify(['unicorn']);
//=> ['unicorn']
arrify(null);
//=> []
arrify(undefined);
//=> []
Supplying null
or undefined
results in an empty array.
License
MIT © Sindre Sorhus