Small and lightweight package to get languages in different languages.
Created using data from https://en.wikiversity.org/wiki/ISO_639-1_language_matrix
Number Supported Languages: 95
Includes typings in the package itself
Install the lasted version with
npm install --save iso-lang
or
yarn add iso-lang
Require the module in your code:
const ISOLang = require("iso-lang");
or
import ISOLang from "iso-lang";
The language object includes the translations of all supported languages and the native translation as its own key.
Small example:
{
de: string,
en: string,
...: string,
native: string
}
Takes in a supported ISOCode (639-1 Standard) and returns the translations for it.
- isoCode (string) // ISO 639-1 Standard
Language Object
Takes in a supported ISOCode (639-1 Standard) and returns all supported languages as small objects in translated to this language.
- isoCode (string)
{ native: string, isoCode: string, name: string }[] // name is the translated name of this language in the requested ISOCode
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT