zombie's new npm test module
npm install npmzombie2> This is a test npm package by zommbie.
> nothing new here
```
$ npm install npmzombie
`js
const arrify = require('arrify');
arrify('🦄');
//=> ['🦄']
arrify(['🦄']);
//=> ['🦄']
arrify(new Set(['🦄']));
//=> ['🦄']
arrify(null);
//=> []
arrify(undefined);
//=> []
`
Supplying null or undefined` results in an empty array.
MIT © zombie (https://npmjs.com)