Irina Glushko 2389e7160b HW1 done | hace 3 años | |
---|---|---|
.. | ||
index.d.ts | hace 3 años | |
index.js | hace 3 años | |
license | hace 3 años | |
package.json | hace 3 años | |
readme.md | hace 3 años |
Convert a value to an array
$ npm install arrify
const arrify = require('arrify');
arrify('🦄');
//=> ['🦄']
arrify(['🦄']);
//=> ['🦄']
arrify(new Set(['🦄']));
//=> ['🦄']
arrify(null);
//=> []
arrify(undefined);
//=> []
Supplying null
or undefined
results in an empty array.
MIT © Sindre Sorhus