siegel
Version:
Web application development ecosystem
11 lines (10 loc) • 345 B
TypeScript
/**
* Performs mod calculations with given float numbers
*
* @param a - Left hand operand
* @param b - Right hand operand
* @param precision - Maximmal digits count after dot among all the next provided numbers
* @returns mod result
*/
declare const floatMod: (a: number, b: number, precision: number) => number;
export default floatMod;