Welcome! Please see the About page for a little more info on how this works.

0 votes
in ClojureScript by

Clojure:

user=> (get "abc" -0.5) \a user=> (get "abc" -1) nil

ClojureScript:

cljs.user=> (get "abc" -0.5) "a" cljs.user=> (get "abc" -1) ""

2 Answers

0 votes
by

Comment made by: mfikes

CLJS-3119.patch passes CI and Canary (/)

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJS-3119 (reported by mfikes)
...