UNPKG

check-coprime

Version:
7 lines (5 loc) 150 B
const extendedGCD = require("./extendedGCD"); function isCoprime(a, b) { return extendedGCD(a, b).gcd === 1; } module.exports = isCoprime;