GithubHelp home page GithubHelp logo

deno_language's Introduction

deno_language

tag Build Status license

ISO 639-1 language.

JSON data from joker-x/languages.js.

Usage

All ISO 639-1 language code:

import languages from "https://deno.land/x/language/languages.ts";

console.log(languages)

output:

{
  "attribute": { "name": 0, "nativeName": 1 },
  "rtl": {
    "ar": 1,
    "dv": 1,
    "fa": 1,
    "ha": 1,
    "he": 1,
    "ks": 1,
    "ku": 1,
    "ps": 1,
    "ur": 1,
    "yi": 1,
  },
  "lang": {
    "aa": ["Afar", "Afar"],
    "ab": ["Abkhazian", "Аҧсуа"],
    "af": ["Afrikaans", "Afrikaans"],
    "ak": ["Akan", "Akana"],
    ...
    ...

Get the writing direction of the language. "rtl" or "ltr":

import { getLangDirection } from "https://deno.land/x/language/mod.ts";

getLangDirection("ar"); // rtl
getLangDirection("zh"); // "ltr"

Check if the language code is valid:

import { isValid } from "https://deno.land/x/language/mod.ts";

isValid("ab"); // true
isValid("zh"); // true
isValid("zz"); // false

Get an array with all the language codes supported:

import { getAllLanguageCode } from "https://deno.land/x/language/mod.ts";

getAllLanguageCode(); // ["aa", "ab", "af", "ak", ..., ...]

Get LanguageInfo:

import { getLanguageInfo } from "https://deno.land/x/language/mod.ts";

getLanguageInfo("en");
// { name: "English", nativeName: "English", direction: "ltr" }

getLanguageInfo("zh");
// { name: "Chinese", nativeName: "中文", direction: "ltr" }

getLanguageInfo("zz");
// null

License

deno_language is released under the MIT License. See the bundled LICENSE file for details.

deno_language's People

Contributors

justjavac avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.