From d31600d2c08d4f1066c65c5d5186724339d792c3 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 6 Aug 2022 22:29:17 -0700 Subject: [PATCH] fix string for cljs too --- src/honey/sql.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/honey/sql.cljc b/src/honey/sql.cljc index 4710fd8..021296d 100644 --- a/src/honey/sql.cljc +++ b/src/honey/sql.cljc @@ -267,7 +267,7 @@ (extend-protocol p/InlineValue nil (sqlize [_] "NULL") - #?(:clj String :cljs js/String) + #?(:clj String :cljs string) (sqlize [x] (str \' (str/replace x "'" "''") \')) #?(:clj clojure.lang.Keyword :cljs Keyword) (sqlize [x] (sql-kw x))