UNPKG

typia

Version:

Superfast runtime validators with only one line

3 lines (2 loc) 119 B
export const _isBetween = (value: number, minimum: number, maximum: number) => minimum <= value && value <= maximum;