From 9b17f263be6630622a87fb9731547aefb5742692 Mon Sep 17 00:00:00 2001 From: Nizar Date: Tue, 21 May 2019 14:25:46 +0100 Subject: [PATCH] correction in isIBAN comment --- src/lib/isIBAN.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/isIBAN.js b/src/lib/isIBAN.js index 31d6b18e4..c8a30f341 100644 --- a/src/lib/isIBAN.js +++ b/src/lib/isIBAN.js @@ -76,7 +76,7 @@ const iban = { * @param {e} - recieves the IBAN tested * @warns IBAN's length differs from country to another, the maximum length is 34 characters so * calculating its modulus 97 is not possible for all machines.To solve this, the function calculate - * the modulus of the first 10 digit by 97 and add the result to the beginning of the remain IBAN + * the modulus of the first 9 digit by 97 and add the result to the beginning of the remain IBAN * number. The process is repeated untill the result's length is less than 10 */ const IbanCalcul = (e) => {