fasterthanlime / shin

:warning: (def shin (dissoc clojurescript :jvm :google_closure)) (deprecated)
MIT License
35 stars 1 forks source link

Make aget work with multiple indices #60

Closed fasterthanlime closed 9 years ago

fasterthanlime commented 9 years ago

The following JS:

obj.something[0].yay

Can be written in ClojureScript as follows:

(aget obj "something" 0 "yay")

So, we should get on that.