1.1.1 • Published 4 years ago

bic v1.1.1

Weekly downloads
3,719
License
MIT
Repository
github
Last release
4 years ago

bic

BIC (Business Identifier Code) format validator

Build status

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)