boa_engine 0.21.1

Boa is a Javascript lexer, parser and compiler written in Rust. Currently, it has support for some of the language.
Documentation
/**
 * Calculate the greatest common divisor of two numbers.
 * @param {number} a
 * @param {number} b
 * @returns {number|*} The greatest common divisor of {a} and {b}.
 * @throws {TypeError} If either {a} or {b} is not finite.
 */
export function gcd(a, b) {
  a = +a;
  b = +b;
  if (!Number.isFinite(a) || !Number.isFinite(b)) {
    throw new TypeError("Invalid input");
  }

  // Euclidean algorithm
  function inner_gcd(a, b) {
    while (b !== 0) {
      let t = b;
      b = a % b;
      a = t;
    }
    return a;
  }

  return inner_gcd(a, b);
}