UNPKG

typia

Version:

Superfast runtime validators with only one line

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