bic
v1.1.1
Published
BIC (Business Identifier Code) format validator
Downloads
14,289
Maintainers
Readme
bic
BIC (Business Identifier Code) format validator
Install
$ npm install bic --save
# OR
$ yarn add bic
Usage
In Node.js
const bic = require('bic');
bic.isValid('12345678'); // false
bic.isValid('CHASUS33'); // true
// OR
import bic from 'bic';
bic.isValid('12345678'); // false
bic.isValid('CHASUS33'); // true
In browser
<script src="https://cdn.jsdelivr.net/npm/bic@[VERSION_NUMBER]/dist/bic.umd.min.js"></script>
<script>
bic.isValid('12345678'); // false
bic.isValid('CHASUS33'); // true
</script>
License
The MIT License (MIT)