mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
40 lines
543 B
Markdown
40 lines
543 B
Markdown
# arrify [![Build Status](https://travis-ci.org/sindresorhus/arrify.svg?branch=master)](https://travis-ci.org/sindresorhus/arrify)
|
|
|
|
> Convert a value to an array
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install arrify
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
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](https://sindresorhus.com)
|