Simple NodeJS validation for IBANs (International Bank Account Number)
npm install nodejs-ibanSimple NodeJS validation for IBANs (International Bank Account Number)
Run this to install the package
``bash`
npm install nodejs-iban
javascript
import {IBAN} from 'nodejs-iban'
let iban = new IBAN()
`
Now you can use the function like that:
`javascript
let isValid = iban.validateIBAN("DE33100000003333333333")
console.log(isValid) => true / false
``