peach a19a732be8 commit message | 2 年 前 | |
---|---|---|
.. | ||
README.md | 2 年 前 | |
index.js | 2 年 前 | |
package.json | 2 年 前 |
Turn anything into an array
$ npm install --save array-ify
var arrayify = require('array-ify');
arrayify('unicorn');
//=> ['unicorn']
arrayify(['unicorn']);
//=> ['unicorn']
arrayify(null);
//=> [null]
arrayify(undefined);
//=> [undefined]
The difference that is this module does NOT turn null
or undefined
to an empty array.
MIT © Steve Mao