Skip to content

Commit

Permalink
remove redundant str
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Jun 17, 2024
1 parent 6a9302c commit 58aa353
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/squint/compiler.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,8 @@
(map (fn [var]
(str "export const " var " = " (munge cc/*cljs-ns*) "." var ";"))
vars))
(str (format "\nexport { %s }\n"
(str/join ", " vars))))))
(format "\nexport { %s }\n"
(str/join ", " vars)))))
(when (contains? @public-vars "default$")
"export default default$\n")))]
(assoc opts
Expand Down

0 comments on commit 58aa353

Please sign in to comment.