mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
6 lines
191 B
JavaScript
6 lines
191 B
JavaScript
if (typeof BigInt === 'function') exports.default = BigInt;
|
|
else
|
|
exports.default = function BigIntNotSupported() {
|
|
throw new Error('BigInt is not supported in this environment.');
|
|
};
|