9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
Object.defineProperty(exports, "__esModule", {
|
||
|
|
value: true
|
||
|
|
});
|
||
|
|
exports.supportBigInt = supportBigInt;
|
||
|
|
function supportBigInt() {
|
||
|
|
return typeof BigInt === 'function';
|
||
|
|
}
|