(ns->relpath ns)
(ns->relpath ns ext)
Given a namespace as a symbol return the relative path. May optionally
provide the file extension, defaults to :cljs.
Source
(defn ns->relpath
"Given a namespace as a symbol return the relative path. May optionally
provide the file extension, defaults to :cljs."
([ns] (ns->relpath ns :cljs))
([ns ext]
(str (string/replace (munge-path ns) \. \/) "." (name ext))))