itcast 6e512b8ce6 aaaa 10 月之前
..
index.d.ts 6e512b8ce6 aaaa 10 月之前
index.js 6e512b8ce6 aaaa 10 月之前
license 6e512b8ce6 aaaa 10 月之前
package.json 6e512b8ce6 aaaa 10 月之前
readme.md 6e512b8ce6 aaaa 10 月之前

readme.md

arrify Build Status

Convert a value to an array

Install

$ npm install arrify

Usage

const arrify = require('arrify');

arrify('🦄');
//=> ['🦄']

arrify(['🦄']);
//=> ['🦄']

arrify(new Set(['🦄']));
//=> ['🦄']

arrify(null);
//=> []

arrify(undefined);
//=> []

Supplying null or undefined results in an empty array.

License

MIT © Sindre Sorhus