Skip to content
This repository was archived by the owner on Oct 21, 2022. It is now read-only.

Commit e08a1fd

Browse files
committed
Fix cljs error
Signed-off-by: Pratik Karki <predatoramigo@gmail.com>
1 parent 3bfe693 commit e08a1fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lt/util/cljs.cljs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
ISeqable
3232
(-seq [coll]
3333
(when (and coll (not (zero? (alength coll))))
34-
(IndexedSeq. (js/String. coll) 0))))
34+
(IndexedSeq. (js/String. coll) 0 nil))))
3535

3636
(set! js/global.String.prototype.apply
3737
(fn
@@ -45,7 +45,7 @@
4545
ISeqable
4646
(-seq [coll]
4747
(when (and coll (not (zero? (alength coll))))
48-
(IndexedSeq. coll 0))))
48+
(IndexedSeq. coll 0 nil))))
4949

5050

5151
(defn ->dottedkw [& args]

0 commit comments

Comments
 (0)