biome_js_parser 0.5.7

Biome's JavaScript parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
let a = {
  get foo() {
    return foo;
  },
  get "bar"() {
    return "bar";
  },
  get ["a" + "b"]() {
    return "a" + "b"
  },
  get 5() {
    return 5;
  },
  get() {
   return "This is a method and not a getter";
  }
}