Dmitri G
Dmitri G
I'm not exactly sure how to reproduce this – so feel free to close as irreproducible. But: when Riemann is experiencing issues (this usually happens right before some kind of...
``` > m.toClj({ "uc1": "test" }) {"uc1" "test"} > m.toClj({ "uc": "test" }) Error: No protocol method IEncodeClojure.-js->clj defined for type object: [object Object] at Error () at x (/Users/dmitrig01/Documents/Projects/branch-backend/node_modules/mori/mori.js:17:63)...
I can't find how this documentation is generated, otherwise I would update it myself. From Mori docs: > Returns the difference between two sets. > `mori.difference(mori.set(["cat", "dog", "mouse"]), mori.set(["dog", "cat",...
Input: ``` m.toJs({ "a": m.vector(1, 2) }) ``` Expected output: ``` { "a": [ 1, 2 ] } // a JS array inside of a JS object ``` Actual output:...
"Plugin" is a confusing name, because the main app is a plugin, and a plugin is typically anything but the main app. Alternate names: - server - app/application - instance...