typia
Version:
Superfast runtime validators with only one line
8 lines • 324 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._isTypeInt8 = void 0;
const _isTypeInt8 = (value) => Math.floor(value) === value && MINIMUM <= value && value <= MAXIMUM;
exports._isTypeInt8 = _isTypeInt8;
const MINIMUM = -128;
const MAXIMUM = 127;
//# sourceMappingURL=_isTypeInt8.js.map