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

proj3rd/tabular3rd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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