Skip to content

Commit 7aea097

Browse files
hitmandshitmands
authored andcommitted
provided basic documentation
1 parent 04484db commit 7aea097

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,24 @@
11
# IANA-LanguageSubtagRegistry-JSONParser
22
A parser that converts the iana language subtag registry to JSON
3+
4+
# Getting Started
5+
6+
```shell
7+
$ npm install [--save[-dev]] iana-languagesubtagregistry-jsonparser
8+
```
9+
# Working Example
10+
11+
```javascript
12+
var IANAParser = require("iana-languagesubtagregistry-jsonparser");
13+
14+
IANAParser
15+
.fetchRegistry()
16+
.then(data => console.log("IANA Language Subtag Registry", data))
17+
;
18+
```
19+
20+
# Model
21+
{
22+
headers: "Object",
23+
body: "Object"
24+
}

0 commit comments

Comments
 (0)