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 515edb4 commit 652cda9Copy full SHA for 652cda9
src/main/cljs/cljs/core.cljs
@@ -12360,7 +12360,7 @@ reduces them without incurring seq initialization"
12360
(defn simple-vector
12361
[& args]
12362
(if (and (instance? IndexedSeq args) (zero? (.-i args)))
12363
- (.fromArray Vector (.-arr args) (not (array? (.-arr args))))
+ (.fromArray Vector (aclone (.-arr args)))
12364
(Vector. nil (into-array args) nil)))
12365
12366
(defn simple-vec
0 commit comments