nbb 2022-10-11

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

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

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

@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