File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -1679,9 +1679,9 @@ reduces them without incurring seq initialization"
1679
1679
(aget arr i)
1680
1680
not-found)))
1681
1681
1682
- ISequential
1683
- IEquiv
1684
- (-equiv [coll other] (equiv-sequential coll other))
1682
+ ; ISequential
1683
+ ; IEquiv
1684
+ ; (-equiv [coll other] (equiv-sequential coll other))
1685
1685
1686
1686
IIterable
1687
1687
(-iterator [coll]
@@ -10529,9 +10529,10 @@ reduces them without incurring seq initialization"
10529
10529
(do
10530
10530
(-write writer " #js " )
10531
10531
(print-map
10532
- (.map (fn [k]
10533
- (MapEntry. (cond-> k (some? (re-matches #"[A-Za-z_\*\+\? !\- '][\w\*\+\? !\- ']*" k)) keyword) (unchecked-get obj k) nil ))
10534
- (js-keys obj))
10532
+ (.map
10533
+ (js-keys obj)
10534
+ (fn [k]
10535
+ (MapEntry. (cond-> k (some? (re-matches #"[A-Za-z_\*\+\? !\- '][\w\*\+\? !\- ']*" k)) keyword) (unchecked-get obj k) nil )))
10535
10536
pr-writer writer opts))
10536
10537
10537
10538
(array? obj)
You can’t perform that action at this time.
0 commit comments