UNPKG

@gleif-it/did-webs-ts

Version:
3 lines (2 loc) 82 B
import { gcd } from './gcd.js'; export const lcm = (a, b) => (a * b) / gcd(a, b);