ouroboros-group/mybulma/node_modules/arrify
2023-09-07 21:00:27 -06:00
..
index.js 202309072100 2023-09-07 21:00:27 -06:00
license 202309072100 2023-09-07 21:00:27 -06:00
package.json 202309072100 2023-09-07 21:00:27 -06:00
readme.md 202309072100 2023-09-07 21:00:27 -06:00

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