We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3cd744 commit fbd8bceCopy full SHA for fbd8bce
src/main/cljs/cljs/core.cljs
@@ -12385,11 +12385,11 @@ reduces them without incurring seq initialization"
12385
IIndexed
12386
(-nth [coll n]
12387
(if (and (<= 0 n) (< n (alength array)))
12388
- (aget array n)
+ (aget array (int n))
12389
(throw (js/Error. (str "No item " n " in vector of length " (alength array))))))
12390
(-nth [coll n not-found]
12391
12392
12393
not-found))
12394
12395
ILookup
0 commit comments