uni-ticket-system/node_modules/licia/gcd.js

7 lines
114 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
exports = function(a, b) {
if (b === 0) return a;
return exports(b, a % b);
};
module.exports = exports;