1.0.3 • Published 3 years ago

sbmdsfile v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Overview

This converts bewtween the MDS 3.0 data spec fixed length format and the json representation of assessments used in iqies. Usage is as simple as:

import { MdsFile } from 'mdsfile';

const converter = MdsFile(); // optionally specify a config file if different from the 2019 release
const myJs = converter.mdsToJs(someMdsFile);
const myMds = converter.jsToMds(someJsFile);