Skip to content
This repository was archived by the owner on May 16, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 753 Bytes

File metadata and controls

29 lines (21 loc) · 753 Bytes

tabular3rd

3GPP RAN3 tabular utilities

Parser


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