Skip to content

Commit 7ca2386

Browse files
committed
* don't need some->
1 parent 31e04f4 commit 7ca2386

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/clojure/cljs/externs.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
(defn simplify-texpr
7575
[texpr]
7676
(case (:type texpr)
77-
:string-lit (some-> (:value texpr) add-prefix)
77+
:string-lit (-> texpr :value add-prefix)
7878
:star 'any
7979
;; TODO: qmark should probably be #{nil T}
8080
(:qmark :bang) (simplify-texpr (-> texpr :children first))

0 commit comments

Comments
 (0)