itcast 6e512b8ce6 aaaa hai 11 meses
..
index.d.ts 6e512b8ce6 aaaa hai 11 meses
index.js 6e512b8ce6 aaaa hai 11 meses
license 6e512b8ce6 aaaa hai 11 meses
package.json 6e512b8ce6 aaaa hai 11 meses
readme.md 6e512b8ce6 aaaa hai 11 meses

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