UNPKG

typia

Version:

Superfast runtime validators with only one line

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