eigent/package/@stackframe/stack-shared/dist/esm/utils/math.js
2025-08-12 01:16:39 +02: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