nodejs-iban
v1.1.1
Published
Simple NodeJS validation for IBANs (International Bank Account Number)
Downloads
3
Maintainers
Readme
NodeJS IBAN
Simple NodeJS validation for IBANs (International Bank Account Number)
Content
Installation
Run this to install the package
npm install nodejs-iban
Usage
Go to your file and import the package as follows:
import {IBAN} from 'nodejs-iban'
let iban = new IBAN()
Now you can use the function like that:
let isValid = iban.validateIBAN("DE33100000003333333333")
console.log(isValid) => true / false