biome_js_parser 0.5.7

Biome's JavaScript parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
5 * 5
6 ** 6 ** 7
1 + 2 * 3
(1 + 2) * 3
1 / 2
74 in foo
foo instanceof Array
foo ?? bar
a >> b
a >>> b
1 + 1 + 1 + 1
5 + 6 - 1 * 2 / 1 ** 6
class Test { #name; test() { true && #name in {} } }