File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12308,7 +12308,7 @@ reduces them without incurring seq initialization"
12308
12308
(-nth [coll n]
12309
12309
(if (and (<= 0 n) (< n (alength array)))
12310
12310
(aget array n)
12311
- #_ (throw (js/Error. (str " No item " n " in vector of length " (alength array))))))
12311
+ (throw (js/Error. (str " No item " n " in vector of length " (alength array))))))
12312
12312
(-nth [coll n not-found]
12313
12313
(if (and (<= 0 n) (< n (alength array)))
12314
12314
(aget array n)
@@ -12317,7 +12317,7 @@ reduces them without incurring seq initialization"
12317
12317
ILookup
12318
12318
(-lookup [coll k]
12319
12319
(when (number? k)
12320
- (-nth coll k nil )))
12320
+ (-nth coll k)))
12321
12321
(-lookup [coll k not-found]
12322
12322
(if (number? k)
12323
12323
(-nth coll k not-found)
You can’t perform that action at this time.
0 commit comments