|
|
hai 10 meses | |
|---|---|---|
| .. | ||
| index.d.ts | hai 10 meses | |
| index.js | hai 10 meses | |
| license | hai 10 meses | |
| package.json | hai 10 meses | |
| readme.md | hai 10 meses | |
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