This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-09-12
Channels
- # ai (1)
- # announcements (7)
- # babashka (32)
- # beginners (23)
- # biff (9)
- # calva (1)
- # cljs-dev (13)
- # clojure (32)
- # clojure-belgium (1)
- # clojure-chicago (15)
- # clojure-europe (24)
- # clojure-india (3)
- # clojure-nl (3)
- # clojure-norway (55)
- # clojure-uk (4)
- # clojurebridge (1)
- # clojurescript (5)
- # core-async (17)
- # data-science (9)
- # datomic (29)
- # events (3)
- # fulcro (16)
- # graalvm-mobile (4)
- # helix (15)
- # hyperfiddle (74)
- # introduce-yourself (1)
- # jobs (4)
- # kaocha (12)
- # leiningen (27)
- # lsp (16)
- # shadow-cljs (6)
- # spacemacs (20)
- # sql (27)
- # squint (7)
- # tools-deps (29)
- # vim (2)
- # xtdb (10)
does anyone knows if there's a way to express getters on js obj in cljs?
{
a: 1,
get b() {
return this.a + 1;
},
}
yes 😅
I'm trying to use descriptors right now, I just wondered about this
...
this-as
...:)
thanks!
Has it been considered to update the implementation of clojure.edn on cljs to support >52 bit integers by using the js/BigInt type?
Attached to this is the fact that reading the string 9223372036854775807N
using clojure.edn from cljs will produce an incorrect value, even though it's explicitly annotated for being an arbitrary precision integer.