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
This commit is contained in:
Dumby
2021-10-26 16:56:45 +05:30
committed by GitHub
parent 3f007379e5
commit 7c2f19b691
2 changed files with 0 additions and 0 deletions

9
Maths/IsOdd.js Normal file
View File

@ -0,0 +1,9 @@
/*
* function to check if number is odd
* return true if number is odd
* else false
*/
export const isOdd = (value) => {
return !!((value & 1))
}