Skip to content

Commit

Permalink
correction in isIBAN comment
Browse files Browse the repository at this point in the history
  • Loading branch information
NizarGhazouani committed May 21, 2019
1 parent 8772de2 commit 9b17f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/isIBAN.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 9b17f26

Please sign in to comment.