UNPKG

typia

Version:

Superfast runtime validators with only one line

8 lines (7 loc) 260 B
//#region src/internal/_isTypeUint8.ts const _isTypeUint8 = (value) => Math.floor(value) === value && MINIMUM <= value && value <= MAXIMUM; const MINIMUM = 0; const MAXIMUM = 255; //#endregion export { _isTypeUint8 }; //# sourceMappingURL=_isTypeUint8.mjs.map