cljsjs

2016-06-09T23:22:42.000035Z

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...

2016-06-09T23:22:50.000037Z

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:

2016-06-09T23:23:09.000038Z

Error: {:example “stuff"} is not ISeqable

2016-06-09T23:23:34.000039Z

The CLJS library appears to not understand the type of data being submitted to it.