• File: readme.md
  • Full Path: /var/www/nodejs/daily_store_reports_nodejs/node_modules/arrify/readme.md
  • Date Modified: 02/04/2023 9:31 PM
  • File size: 519 bytes
  • MIME-type: text/plain
  • Charset: utf-8
# 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 --save arrify
```


## Usage

```js
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](http://sindresorhus.com)