projecte_ionic/node_modules/memfs/lib/getBigInt.js
2022-02-09 18:30:03 +01:00

5 lines
191 B
JavaScript
Executable file

if (typeof BigInt === 'function') exports.default = BigInt;
else
exports.default = function BigIntNotSupported() {
throw new Error('BigInt is not supported in this environment.');
};