0.3.0 • Published 4 years ago

mgf-parser v0.3.0

Weekly downloads
6
License
MIT
Repository
github
Last release
4 years ago

mgf-parser

NPM version build status npm download

Parse an MGF file into a JSON.

Installation

$ npm i mgf-parser

Usage

parse(rawData[, options])

Parses the text input rawdata into a JSON.

import { readFileSync } from 'fs';
import { join } from 'path';

import parse from 'mgf-parser';

let rawData = readFileSync(
  join(__dirname, './data.mgf'),
  'utf8',
);

let result = parse(rawData);

// result is the parsed data (array of objects)

API Documentation

License

MIT