1.0.3 • Published 5 years ago

third-gen-spec-list v1.0.3

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
5 years ago

3GPP Spec List Retriever

Installation

npm i third-gen-spec-list

Usage

Source Code

import * as spec from 'third-gen-spec-list';
spec.GetList('36.331', (err, list) => {
    if (err) {
        console.log(err);
    } else {
        console.log(list);
    }
});

Command line

node getList 36.331

Output

[
  {
    "name": "36331-100.zip",
    "type": "-",
    "size": 184709,
    "date": "2007-12-10T23:00:00.000Z"
  },
  // omitted bunch of items
  {
    "name": "36331-f30.zip",
    "type": "-",
    "size": 2008689,
    "date": "2018-09-27T13:07:00.000Z"
  }
]
1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago