clojurescript

ClojureScript, a dialect of Clojure that compiles to JavaScript http://clojurescript.org | Currently at 1.10.879
2021-02-21T01:15:05.015900Z

That is so weird that they would be off by 1 from each other. That is 0.1 away from being an epsilon type of rounding error.

2021-02-21T01:17:52.016100Z

Oh, I see how CLJS quot is implemented now. It is very sensitive to tiny epsilon differences in double arithmetic.

Yehonathan Sharvit 2021-02-21T19:43:52.018Z

Is it possible to make a ClojureScript object behave as a JavaScript object?

Yehonathan Sharvit 2021-02-21T19:44:56.018900Z

I mean: to pass a modification of a ClojureScript object to a JavaScript function that expects a JavaScript object with converting the whole ClojureScript object

Yehonathan Sharvit 2021-02-21T19:46:16.019400Z

I know that https://github.com/mfikes/cljs-bean by @mfikes allows the opposite direction