# driver-license-parser

PDF417 parser for decoding driver license barcode raw data

***** LIBRARY IS NOT FULLY TESTED FOR ALL VERSION *****

Fork/Inspired by: https://github.com/ksoftllc/license-parser

### Usage 

//write documentation to use the license parser 

### Example

```javascript
const { parse } = require('driver-license-parser');

const pdf417 = '...';
const data = parse(pdf417);
```
##### Output 
```
const data = { license: license, version: version } 
```


