Skip to content

Instantly share code, notes, and snippets.

@nothingrealhappen
Last active September 8, 2015 15:19
Show Gist options
  • Save nothingrealhappen/622b715369dd470872ca to your computer and use it in GitHub Desktop.
Save nothingrealhappen/622b715369dd470872ca to your computer and use it in GitHub Desktop.
```javascript
const cat = (head, ...items) => head.length ? head.concat.apply(head, items) : [];
const flat = arr => Array.isArray(arr) ? cat.apply(cat, arr.map(flat)) : [arr];
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment