mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 12:10:24 +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 };
|