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 fbd8bce commit f122ee6Copy full SHA for f122ee6
src/main/cljs/cljs/core.cljs
@@ -12664,10 +12664,10 @@ reduces them without incurring seq initialization"
12664
12665
IFind
12666
(-find [coll k]
12667
- (let [k (if-not (keyword? k) k (keyword->obj-map-key k))]
12668
- (when (and (string? k)
12669
- (not (nil? (scan-array 1 k strkeys))))
12670
- (MapEntry. k (unchecked-get strobj k) nil))))
+ (let [k' (if-not (keyword? k) k (keyword->obj-map-key k))]
+ (when (and (string? k')
+ (not (nil? (scan-array 1 k' strkeys))))
+ (MapEntry. k (unchecked-get strobj k') nil))))
12671
12672
IKVReduce
12673
(-kv-reduce [coll f init]
0 commit comments