1 // BigInt is not important to the verify app, however there are some statically defined constants of BigInt in pmcrypto
2 // This is a patch to avoid it erroring out on "BigInt is not defined".
3 // Why is pmcrypto even imported in verify?
4 if (!('BigInt' in window)) {
6 window.BigInt = () => {};