3GPP RAN3 tabular utilities
Parse RAN3 tabular definitions into JavaScript class objects
npm install proj3rd/tabular3rd
import { readFileSync } from 'fs';
import { parse } from 'tabular3rd';
const ran3spec = readFileSync('ran3-spec-docx-file');
const parsed = await parse(ran3spec);
TBU