Created
August 23, 2013 18:36
-
-
Save aamedina/6322584 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
| (extend-type js/NodeList | |
| ISeq | |
| (-first [nodes] | |
| (aget nodes 0)) | |
| (-rest [nodes] | |
| (for [n (range 1 (.-length nodes))] | |
| (aget nodes n))) | |
| ISeqable | |
| (-seq [nodes] nodes)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment