arithmetic-type/double

View on GitHub
src/arithmetic/divmod.js

Summary

Maintainability
A
0 mins
Test Coverage
export const divmod = (a, b) => [(a / b) | 0, a % b];