I needed an untranspiled version without static class properties. If you do need transpiling out of the box or want to use the package directly in the browser, use the original package.
Simple interface for ISO-639-1 language codes
npm install @ovl/iso-639-1
const ISO6391 = require('@ovl/iso-639-1')
const lang = new ISO6391()
console.log(lang.getName('en')) // 'English'
Import
import ISO6391 from '@ovl/iso-639-1'
const lang = new ISO6391()
console.log(lang.getName('en')) // 'English'
- @param code {string}
- @return {string}
Lookup language english name by code
- @return {array}
Get array of all language english names
- @param code {string}
- @return {string}
Lookup language native name by code
- @return {array}
Get array of all language native names
- @param name {string}
- @return {string}
Lookup code by english name or native name
- @return {array}
Get array of all codes
- @param code {string}
- @return {boolean}
Check whether the given code is in the list of ISO-639-1
- @param codes {array}
- @return {array}
Get the array of the language objects by the given codes
const ISO6391 = require('@ovl/iso-639-1')
console.log(ISO6391.getName('zh')) // 'Chinese'
console.log(ISO6391.getNativeName('zh')) // '中文'
console.log(ISO6391.getAllNames()) // ['Afar','Abkhaz', ... ,'Zulu']
console.log(ISO6391.getAllNativeNames()) //['Afaraf','аҧсуа бызшәа', ... ,'isiZulu' ]
console.log(ISO6391.getCode('Chinese')) // 'zh'
console.log(ISO6391.getCode('中文')) // 'zh'
console.log(ISO6391.getAllCodes()) //['aa','ab',...,'zu']
console.log(ISO6391.validate('en')) // true
console.log(ISO6391.validate('xx')) // false
console.log(ISO6391.getLanguages(['en', 'zh']))
// [{code:'en',name:'English',nativeName:'English'},{code:'zh',name:'Chinese',nativeName:'中文'}]