You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cljs.user> (defo #js {"foo"1})
;; => #'cljs.user/o
cljs.user> (defks [:foo])
;; => #'cljs.user/ks
cljs.user> (j/get-in o ks "not found, but the 3-arity version works just fine")
;; => 1
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
Type to CLJS REPL:
Expected:
(j/get-in o ks)
to return 1Actual: Exception is thrown.
Note that the following works just fine:
The text was updated successfully, but these errors were encountered: