codeql-action/node_modules/ava/node_modules/arrify
2022-02-24 17:03:29 +00:00
..
index.d.ts Upgrade Ava to v4 2022-02-01 18:56:42 +00:00
index.js Upgrade Ava to v4 2022-02-01 18:56:42 +00:00
license Upgrade Ava to v4 2022-02-01 18:56:42 +00:00
package.json Update checked-in dependencies 2022-02-24 17:03:29 +00:00
readme.md Upgrade Ava to v4 2022-02-01 18:56:42 +00:00

arrify

Convert a value to an array

Install

$ npm install arrify

Usage

import arrify from 'arrify';

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

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

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

arrify(null);
//=> []

arrify(undefined);
//=> []

Specifying null or undefined results in an empty array.


Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.