mori
mori copied to clipboard
ClojureScript's persistent data structures and supporting API from the comfort of vanilla JavaScript
There is a small typo in docs/js/shCore.js. Should read `beginning` rather than `begining`.
``` s0 = mori.set(["cat", "dog", "mouse"]) s1 = mori.set(["dog", "cat", "bird"]) console.log(mori.difference(s0, s1)) ``` prints ``` #{"mouse"} ``` but it should print ``` #{"mouse" "bird"} ``` (mori version 0.3.2 on...
Running the build as described in the README.md on OSX doesn't work. It looks like the build script expects a file mori.bare.js to be at the root of the project...
The following sentence from the mori website is currently not really true: "All Mori collections support ES6 iteration via foo[Symbol.iterator] or foo['@@iterator']" mori.list(1, 2, 3)['@@iterator'] returns undefined. See also: http://jsfiddle.net/4utqrsta
This is a funny one. Using node 7.4.0 and mori 0.3.2: ``` > var m = require("mori"); undefined > m.toClj({j: 42}); Error: No protocol method IEmptyableCollection.-empty defined for type object:...
I was running some performance tests on mori vs. immutable, and found that we could make vector creation from a JS array at least two times faster: https://gist.github.com/edge/571bc3da31cb37d98addd78cc937f4d6 ``` 113...
This alias brings user a faster way to understand setup. IMHO run-script is npm atavism.
Hello, I've started using mori on an experimental project a few weeks ago and all was good until I wanted to do some updates on a vector. 1 . The...
There is a typo in documentation, see [line 239](https://github.com/swannodette/mori/blob/master/docs/index.html#L239): > Beyond _the the_ core philosophy