Skip to content

Commit 3f199d9

Browse files
committed
CLJS-3331: instance? -> implements?
1 parent 9835a1b commit 3f199d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11733,7 +11733,7 @@ reduces them without incurring seq initialization"
1173311733
(with-meta
1173411734
(persistent!
1173511735
(reduce-kv (fn [acc k v] (assoc! acc k (f v)))
11736-
(if (instance? IEditableCollection m)
11736+
(if (implements? IEditableCollection m)
1173711737
(transient m)
1173811738
(transient {}))
1173911739
m))

0 commit comments

Comments
 (0)