UNPKG

ts-useful

Version:

Functions for animation, color transitions, ecliptic, bezier, decasteljau, curves, three dimensional curves, smooth scrolling, random range, randomItem, mobius index, vectors, physics vectors, and easing.

11 lines (10 loc) 217 B
/** * * @param compare number * @param range { min: number, max: number } * @returns boolean */ export declare const Between: (compare: number, range: { min: number; max: number; }) => boolean;