mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-30 12:40:10 +00:00
8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
// src/utils/math.tsx
|
|
function remainder(n, d) {
|
|
return (n % d + Math.abs(d)) % d;
|
|
}
|
|
export {
|
|
remainder
|
|
};
|
|
//# sourceMappingURL=math.js.map
|