Created
August 8, 2014 00:41
-
-
Save Gerhut/ff5828d88d5ea86b7546 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| flatten = (list, result = []) -> | |
| for value in list | |
| if Array.isArray value | |
| flatten value, result | |
| else | |
| result.push value | |
| return result | |
| console.log flatten [(->), [[new Date], /foo/g]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment