-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BigInt polyfill? #381
Comments
The problem here - class BigInt {
constructor(value): bigint;
static asUintN(bits, bigint): bigint;
static asIntN(bits, bigint) : bigint;
toString(radix): string;
toLocaleString(radix): string;
valueOf(): bigint;
@@toStringTag: 'BigInt';
} Also required extensions of some existent features. So, After some days I'll merge |
(Just a note: |
I think that it's better to close this issue, I'll add a link to it to the README. If someone has any thoughts about it - write it here. |
The BigInt proposal is currently in Stage 3, see https://github.com/tc39/proposal-bigint.
We could use it in Babel babel/babel#6015.
The text was updated successfully, but these errors were encountered: