nbb

ray 2022-10-11T08:39:32.656179Z

clj-kondo / nbb query : is clj-kondo right to treat this as a warning?

ray 2022-10-11T08:39:41.450449Z

;; make the Crypto object methods available to CLJS
(set! (.-crypto js) (Crypto.))

ray 2022-10-11T08:39:54.126549Z

src/crypto_util.cljs:7:17: error: Unresolved symbol: js

borkdude 2022-10-11T09:05:09.746989Z

@raymcdermott Yeah, normally this doesn't work in CLJS (but it does work in nbb). You can write this as js/globalThis instead of js

👍🏼 1
ray 2022-10-11T09:25:11.462269Z

Okies