mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-07-13 11:18:36 +00:00
6 lines
196 B
TypeScript
6 lines
196 B
TypeScript
/**
|
|
* Similar to the modulo operator, but always returns a positive number (even when the input is negative).
|
|
*/
|
|
declare function remainder(n: number, d: number): number;
|
|
|
|
export { remainder };
|