EASYAIuniappNewUI/node_modules/licia/gcd.js
2025-02-08 18:50:38 +08:00

7 lines
114 B
JavaScript

exports = function(a, b) {
if (b === 0) return a;
return exports(b, a % b);
};
module.exports = exports;