mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
14 lines
178 B
TypeScript
14 lines
178 B
TypeScript
// @target: esnext
|
|
// @lib: esnext
|
|
// @strict: true
|
|
BigInt(1);
|
|
BigInt(1n);
|
|
BigInt("0");
|
|
BigInt(false);
|
|
|
|
BigInt(Symbol());
|
|
BigInt({ e: 1, m: 1 })
|
|
BigInt(null);
|
|
BigInt(undefined)
|
|
|