File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10104,12 +10104,12 @@ Maps become Objects. Arbitrary keys are encoded to by key->js."
1010410104(defn find-ns-obj [ns ]
1010510105 (let [munged-ns (munge (str ns ))
1010610106 segs (.split munged-ns " ." )]
10107- (if ^boolean js/COMPILED
10108- ( js/eval munged-ns)
10109- ( case *target*
10110- " nodejs " (find-ns-obj* js/global segs)
10111- " default" (find-ns-obj* js/window segs)
10112- (throw (js/Error. (str " find-ns-obj not supported for target " *target*) ))))))
10107+ (case *target*
10108+ " nodejs " ( if ^boolean js/COMPILED
10109+ ( js/eval munged-ns)
10110+ (find-ns-obj* js/global segs) )
10111+ " default" (find-ns-obj* js/window segs)
10112+ (throw (js/Error. (str " find-ns-obj not supported for target " *target*))))))
1011310113
1011410114(defn ns-interns* [sym]
1011510115 (let [ns-obj (find-ns-obj sym)
You can’t perform that action at this time.
0 commit comments