UNPKG

@maskito/kit

Version:

The optional framework-agnostic Maskito's package with ready-to-use masks

5 lines (4 loc) 172 B
/** * Clamps a value between two inclusive limits */ export declare function clamp<T extends Date | bigint | number>(value: T, minimum: T | null, maximum?: T | null): T;