UNPKG

typia

Version:

Superfast runtime validators with only one line

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