UNPKG

@gleif-it/did-webs-ts

Version:
13 lines (12 loc) 248 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.gcd = void 0; const gcd = (a, b) => { while (b !== 0) { const temp = b; b = a % b; a = temp; } return a; }; exports.gcd = gcd;