UNPKG

typia

Version:

Superfast runtime validators with only one line

8 lines (7 loc) 259 B
//#region src/internal/_isTypeInt8.ts const _isTypeInt8 = (value) => Math.floor(value) === value && MINIMUM <= value && value <= MAXIMUM; const MINIMUM = -128; const MAXIMUM = 127; //#endregion export { _isTypeInt8 }; //# sourceMappingURL=_isTypeInt8.mjs.map