@arithmetic-type/double Home Manual Reference Source

src/arithmetic/idivmod.js

  1. export function idivmod(a, b) {
  2. const q = (a / b) | 0;
  3.  
  4. return [q, (a %= b)];
  5. }