root 3bf41bf355 update | před 1 rokem | |
---|---|---|
.. | ||
index.js | před 1 rokem | |
license | před 1 rokem | |
package.json | před 1 rokem | |
readme.md | před 1 rokem |
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