Skip to content

Instantly share code, notes, and snippets.

@aamedina
Created August 23, 2013 18:36
Show Gist options
  • Select an option

  • Save aamedina/6322584 to your computer and use it in GitHub Desktop.

Select an option

Save aamedina/6322584 to your computer and use it in GitHub Desktop.
(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