From 7c2f19b6910c6b410f86e7a337beb04b33930b03 Mon Sep 17 00:00:00 2001 From: Dumby <71999854+SpiderMath@users.noreply.github.com> Date: Tue, 26 Oct 2021 16:56:45 +0530 Subject: [PATCH] merge: Rename 2 filenames to follow PascalCase (#816) * Added LucasSeries * Added more tests and renamed function * Changed RangeError to TypeError * Added Aliquot Sum and tests * Fix ALiquot tests, need to learn how to use Jest * Added some explanation for the Aliquot sum * Change file names of DecimalIsolate & IsOdd to Pascal case --- Maths/{decimalIsolate.js => DecimalIsolate.js} | 0 Maths/{isOdd.js => IsOdd.js} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename Maths/{decimalIsolate.js => DecimalIsolate.js} (100%) rename Maths/{isOdd.js => IsOdd.js} (100%) diff --git a/Maths/decimalIsolate.js b/Maths/DecimalIsolate.js similarity index 100% rename from Maths/decimalIsolate.js rename to Maths/DecimalIsolate.js diff --git a/Maths/isOdd.js b/Maths/IsOdd.js similarity index 100% rename from Maths/isOdd.js rename to Maths/IsOdd.js