class-validator icon indicating copy to clipboard operation
class-validator copied to clipboard

feature: Luhn algorithm

Open arash-mosavi opened this issue 1 year ago • 0 comments

Description

I have implemented the Luhn algorithm for validating card numbers in the project. This algorithm, widely used to verify the validity of credit card numbers, has been added to the project to prevent invalid card numbers from being accepted.

Proposed solution

Adding the Luhn Algorithm: A function named isLuhn has been created that uses the Luhn algorithm to validate card numbers. This function ensures that only valid card numbers are accepted.

Writing Tests: Tests have been written to ensure the correct functionality of this algorithm. These tests cover various scenarios, including valid and invalid card numbers, to verify that the algorithm works as expected.

Would it be possible for me to create a Pull Request for these changes? Please let me know if I can proceed with submitting the PR.

arash-mosavi avatar Aug 13 '24 13:08 arash-mosavi