UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

9 lines (8 loc) 378 B
/** * Checks if the value is between integers. * * Проверяет, лежит ли значение между целыми числами. * @param value input value/ входное значение * @param between value for rounding/ значение для округления */ export declare function isIntegerBetween(value: number, between: number): boolean;