(find-js-jar jar-path lib-path)
Returns a seq of URLs of all JavaScript resources in the given jar
Source
(defn find-js-jar
"Returns a seq of URLs of all JavaScript resources in the given jar"
[jar-path lib-path]
(map io/resource
(filter #(and
(.endsWith ^String % ".js")
(.startsWith ^String % lib-path))
(jar-entry-names jar-path))))