iso-11649
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

npm version Build Status GitHub license

iso-11649

European Structured Communication validation and conversion following ISO 11649.

Installation

Install using npm:

$ npm install iso-11649

Usage

In node.js

var ISO11649 = require('iso-11649');
 
ISO11649.generate('TU06FX'); // RF96TU06FX
ISO11649.generate('X2HU4TC28XTYLHASYWT91'); // RF14X2HU4TC28XTYLHASYWT91
 
ISO11649.validate('RF720HYA6'); // true
ISO11649.validate('RF19GAX8WS5JYOOUJ87'); // false

API

generate(rawValue: String) -> String

Check requirements.
Returns value as a valid Creditor Reference using rawValue.

Required

  • rawValue must be not Null
  • rawValue must be of type String
  • rawValue must respect format ^[A-Z0-9]{1,21}$

validate(rawValue: String) -> Boolean

Check requirements.
Returns if the Creditor Reference format against ISO 11649 specifications is valid.

Required

  • rawValue must be not Null
  • rawValue must be of type String
  • rawValue must respect format ^RF[0-9]{2}[A-Z0-9]{1,21}$

Dependents (0)

Package Sidebar

Install

npm i iso-11649

Weekly Downloads

456

Version

1.0.1

License

MIT

Unpacked Size

6.92 kB

Total Files

5

Last publish

Collaborators

  • edumdum