msp-parser
v0.0.1
Published
[![NPM version][npm-image]][npm-url] [![build status][ci-image]][ci-url] [![Test coverage][codecov-image]][codecov-url] [![npm download][download-image]][download-url]
Readme
msp-parser
.
Installation
$ npm i msp-parser
Usage
import { parseMSP } from 'msp-parser';
const result = parseMSP(mspText);// not implemented yet
import { mspIterator } from 'msp-parser';
for (const entry of mspIterator(mspText)) {
console.log(entry);
}