1
0
mirror of https://github.com/thangisme/notes.git synced 2024-10-05 00:23:45 -04:00
notes/node_modules/arrify
..
index.js
license
package.json
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