typia
Version:
Superfast runtime validators with only one line
8 lines (7 loc) • 308 B
JavaScript
//#region src/internal/_isTypeInt64Bigint.ts
const _isTypeInt64Bigint = (value) => MINIMUM <= value && value <= MAXIMUM;
const MINIMUM = -BigInt("9223372036854775808");
const MAXIMUM = BigInt("9223372036854775807");
//#endregion
export { _isTypeInt64Bigint };
//# sourceMappingURL=_isTypeInt64Bigint.mjs.map