# @datagica/parse-ibans

> Parse IBANs

Latest version **0.0.1** (published 2018-05-29) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install @datagica/parse-ibans
pnpm add @datagica/parse-ibans
yarn add @datagica/parse-ibans
bun add @datagica/parse-ibans
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2018-05-29 |
| First published | 2017-07-31 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 6.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Julian Bilcke |
| Maintainers | datagica |

## Links

- npm: https://www.npmjs.com/package/@datagica/parse-ibans
- Repository: https://github.com/datagica/parse-ibans
- Homepage: https://github.com/datagica/parse-ibans#readme
- Issues: https://github.com/datagica/parse-ibans/issues
- npm.io page: https://npm.io/package/@datagica/parse-ibans

## Dependencies (2)

- [ibantools](https://npm.io/package/ibantools.md) ^1.3.0
- [@datagica/tokenize](https://npm.io/package/@datagica/tokenize.md) ^0.0.2

## Recent versions

- 0.0.1 (latest) — 2018-05-29
- 0.0.0 — 2017-07-31

## README

# Parse IBANs

*Extracts IBANs from a text*

Note: still experimental (for instance, word coordinates might be off)

Example:

```
      THIS IS NOT IBAN
      THIS IS NOT AN IBAN
      END OF SENTENCE.
      NL91 ABNA 0417 1643 00
```

Output:

```json
  [
    {
      "ngram": "NL91 ABNA 0417 1643 00",
      "value": {
        "id": "iban-nl91abna0417164300",
        "label": {
          "en": "NL91 ABNA 0417 1643 00"
        },
        "isValid": true,
        "countryName": "Netherlands",
        "countryCode": "NL"
      },
      "score": 1,
      "position": {
        "sentence": 1,
        "word": 5,
        "begin": 101,
        "end": 123
      }
    }
  ]
```

---
_Source: https://npm.io/package/@datagica/parse-ibans · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
