eigent/package/@stackframe/stack-shared/dist/esm/utils/math.js
2025-07-29 23:57:16 +08:00

8 lines
No EOL
143 B
JavaScript

// src/utils/math.tsx
function remainder(n, d) {
return (n % d + Math.abs(d)) % d;
}
export {
remainder
};
//# sourceMappingURL=math.js.map