diff options
Diffstat (limited to 'src/web/app/common/scripts/gcd.js')
| -rw-r--r-- | src/web/app/common/scripts/gcd.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/web/app/common/scripts/gcd.js b/src/web/app/common/scripts/gcd.js deleted file mode 100644 index 9a19f9da66..0000000000 --- a/src/web/app/common/scripts/gcd.js +++ /dev/null @@ -1,2 +0,0 @@ -const gcd = (a, b) => !b ? a : gcd(b, a % b); -export default gcd; |