Library for decoding and encoding electronic addresses
npm install @opuscapita/electronic-addressEncoding is based on ISO6523. Details can be found at https://www.galaxygw.com/iso6523/
---
Install library by running:
```
npm install @opuscapita/electronic-address`
Examples to decode and encode electronic addresses:JS
const electronicAddress = require('@opuscapita/electronic-address');
// decode an electronic invoice
electronicAddress.decode('9930:DE12345678542');
// returns object { type: 'vat', value: 'DE123456785', ext: '42' }
// encode an electronic invoice
electronicAddress.encode({ type: 'gln', value: '4324565678967' });
// returns '0088:4324565678967'
// For type orgnr, the country must be specified. E.g.`
electronicAddress.encode({ type: 'orgnr', value: '54323456', country: 'DK' });
// returns '9902:54323456'type can be one of the following:vat
- gln
- ovt
- duns
- orgnr`
-