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 9f30110 commit 4e22030Copy full SHA for 4e22030
src/main/cljs/cljs/js.cljs
@@ -22,7 +22,7 @@
22
23
(js/goog.require "cljs.core$macros")
24
25
-(defn debug-prn
+(defn- debug-prn
26
[& args]
27
(binding [*print-fn* *print-err-fn*]
28
(apply println args)))
@@ -38,13 +38,13 @@
38
0 (- (count file) 5))]
39
(symbol (demunge lib-name))))
40
41
-(defn atom? [x]
+(defn- atom? [x]
42
(instance? Atom x))
43
44
-(defn valid-name? [x]
+(defn- valid-name? [x]
45
(or (nil? x) (symbol? x) (string? x)))
46
47
-(defn valid-opts? [x]
+(defn- valid-opts? [x]
48
(or (nil? x) (map? x)))
49
50
(defonce
0 commit comments