Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/lcid/readme.md')
-rw-r--r--node_modules/lcid/readme.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/node_modules/lcid/readme.md b/node_modules/lcid/readme.md
index 2b1aa798b..bee4a7016 100644
--- a/node_modules/lcid/readme.md
+++ b/node_modules/lcid/readme.md
@@ -1,8 +1,8 @@
# lcid [![Build Status](https://travis-ci.org/sindresorhus/lcid.svg?branch=master)](https://travis-ci.org/sindresorhus/lcid)
-> Mapping between [standard locale identifiers](https://en.wikipedia.org/wiki/Locale_(computer_software)) and [Windows locale identifiers (LCID)](http://en.wikipedia.org/wiki/Locale#Specifics_for_Microsoft_platforms)
+> Mapping between [standard locale identifiers](http://en.wikipedia.org/wiki/Locale) and [Windows locale identifiers (LCID)](http://en.wikipedia.org/wiki/Locale#Specifics_for_Microsoft_platforms)
-Based on the [mapping](https://github.com/python/cpython/blob/8f7bb100d0fa7fb2714f3953b5b627878277c7c6/Lib/locale.py#L1465-L1674) used in the Python standard library.
+Based on the [mapping](https://github.com/python/cpython/blob/be2a1a76fa43bb1ea1b3577bb5bdd506a2e90e37/Lib/locale.py#L1395-L1604) used in the Python standard library.
The mapping itself is just a [JSON file](lcid.json) and can be used wherever.
@@ -10,14 +10,14 @@ The mapping itself is just a [JSON file](lcid.json) and can be used wherever.
## Install
```
-$ npm install lcid
+$ npm install --save lcid
```
## Usage
```js
-const lcid = require('lcid');
+var lcid = require('lcid');
lcid.from(1044);
//=> 'nb_NO'
@@ -32,4 +32,4 @@ lcid.all;
## License
-MIT © [Sindre Sorhus](https://sindresorhus.com)
+MIT © [Sindre Sorhus](http://sindresorhus.com)