UNPKG

353 BMarkdownView Raw
1I find myself writing `item = item instanceof Array ? item : [item]` a lot, so I decided to make a simple library to does
2it for me. A few examples:
3
4```javascript
5toArray = require("toarray");
6
7console.log(toArray("hello-world!")); //["hello-world!"]
8console.log(toArray(["hello-world!"])); //["hello-world!"]
9console.log(toArray(undefined)); //[]
10```