Anyone have suggestions for taking a CLJS library I wrote, compiled down to a JS file, and then requiring it within JS? I’ve followed mori’s example (https://github.com/swannodette/mori/blob/master/src/mori/macros.clj) for exporting functions from Clojure...
Problem is this: once I use Mori’s toClj
function and pass, say, an object, to an exported function in the Clojurescript library, I get errors like the following:
Error: {:example “stuff"} is not ISeqable
The CLJS library appears to not understand the type of data being submitted to it.