https://github.com/jhermsmeier/node-swift-bic
Business Identifier Code (BIC)
https://github.com/jhermsmeier/node-swift-bic
banking bic fints hbci swift
Last synced: 26 days ago
JSON representation
Business Identifier Code (BIC)
- Host: GitHub
- URL: https://github.com/jhermsmeier/node-swift-bic
- Owner: jhermsmeier
- License: mit
- Created: 2017-05-18T19:01:17.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-25T11:13:47.000Z (about 7 years ago)
- Last Synced: 2025-01-15T13:07:40.575Z (4 months ago)
- Topics: banking, bic, fints, hbci, swift
- Language: JavaScript
- Size: 8.79 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# BIC (Business Identifier Code)
[](https://npmjs.com/package/swift-bic)
[](https://npmjs.com/package/swift-bic)
[](https://npmjs.com/package/swift-bic)
[](https://travis-ci.org/jhermsmeier/node-swift-bic)## Install via [npm](https://npmjs.com)
```sh
$ npm install --save swift-bic
```## Usage
```js
var BIC = require( 'swift-bic' )
``````js
> BIC.isValid( 'HELADEF1JEN' )
< true
``````js
> BIC.parse( 'HELADEF1JEN' )
< BIC {
institution: 'HELA',
country: 'DE',
location: 'F1',
branch: 'JEN'
}
``````js
> var sparkasse = BIC.parse( 'HELADEF1JEN' )
> sparkasse.isValid()
< true
``````js
> sparkasse.toString()
< 'HELADEF1JEN'
```## Related Modules
- [fints-institute-db](https://github.com/jhermsmeier/fints-institute-db)