Skip to content

Commit 4e22030

Browse files
author
dnolen
committed
hide a few more things in cljs.js
1 parent 9f30110 commit 4e22030

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/cljs/cljs/js.cljs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
(js/goog.require "cljs.core$macros")
2424

25-
(defn debug-prn
25+
(defn- debug-prn
2626
[& args]
2727
(binding [*print-fn* *print-err-fn*]
2828
(apply println args)))
@@ -38,13 +38,13 @@
3838
0 (- (count file) 5))]
3939
(symbol (demunge lib-name))))
4040

41-
(defn atom? [x]
41+
(defn- atom? [x]
4242
(instance? Atom x))
4343

44-
(defn valid-name? [x]
44+
(defn- valid-name? [x]
4545
(or (nil? x) (symbol? x) (string? x)))
4646

47-
(defn valid-opts? [x]
47+
(defn- valid-opts? [x]
4848
(or (nil? x) (map? x)))
4949

5050
(defonce

0 commit comments

Comments
 (0)