- Add Strike API credentials configuration - Implement Strike node with 9 resources (Account, Balance, Currency Exchange, Deposit, Invoice, Payment, Payment Method, Payout, Rates) - Add comprehensive operation descriptions for all resources - Include CLAUDE.MD documentation - Set up build configuration with TypeScript, ESLint, and Prettier 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
36 lines
826 B
Markdown
36 lines
826 B
Markdown
# lcid [](https://travis-ci.org/sindresorhus/lcid)
|
|
|
|
> 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/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.
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install --save lcid
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
var lcid = require('lcid');
|
|
|
|
lcid.from(1044);
|
|
//=> 'nb_NO'
|
|
|
|
lcid.to('nb_NO');
|
|
//=> 1044
|
|
|
|
lcid.all;
|
|
//=> {'af_ZA': 1078, ...}
|
|
```
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](http://sindresorhus.com)
|