oadf-parser-seltec3-pdf
Version:
A parser for SELTEC3 PDF result list files which puts tha data into a GraphQL schema
25 lines (16 loc) • 794 B
Markdown
//img.shields.io/travis/oadf/oadf-parser-seltec3-pdf.svg?maxAge=2592000?style=flat-square)](https://travis-ci.org/oadf/oadf-parser-seltec3-pdf)
[](https://coveralls.io/github/oadf/oadf-parser-seltec3-pdf)
A parser which takes SELTEC3 PDF result lists and converts its data to the OADF schema.
The parser returns a GraphQL schema with which the data can be queried and processed as needed.
```javascript
import parser from 'oadf-parser-seltec3-pdf';
import fs from 'fs';
const filePath = '...';
const data = new Uint8Array(fs.readFileSync(filePath));
parser(data).then((schema) => {
});
```
MIT
[![Travis](https: