APPLE 025c69e553 wesmiler 点什么广告 před 3 roky
..
index.js 025c69e553 wesmiler 点什么广告 před 3 roky
license 025c69e553 wesmiler 点什么广告 před 3 roky
package.json 025c69e553 wesmiler 点什么广告 před 3 roky
readme.md 025c69e553 wesmiler 点什么广告 před 3 roky

readme.md

arrify Build Status

Convert a value to an array

Install

$ npm install --save arrify

Usage

const arrify = require('arrify');

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

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

arrify(null);
//=> []

arrify(undefined);
//=> []

Supplying null or undefined results in an empty array.

License

MIT © Sindre Sorhus