This commit is contained in:
6
node_modules/licia/gcd.js
generated
vendored
Normal file
6
node_modules/licia/gcd.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
exports = function(a, b) {
|
||||
if (b === 0) return a;
|
||||
return exports(b, a % b);
|
||||
};
|
||||
|
||||
module.exports = exports;
|
||||
Reference in New Issue
Block a user