@technobuddha/library
Version:
A large library of useful functions
10 lines (9 loc) • 307 B
TypeScript
/**
* Tests to see if the specified value is an multiple of *multipler*
*
* @param input The number to test
* @param multiplier The multipler
* @returns true, if the number is a multiple
*/
export declare function isMultipleOf(input: number, multiplier: number): boolean;
export default isMultipleOf;