rtl-detect
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/rtl-detect package

1.1.2 • Public • Published

rtl-detect

Build Status

This library will help you to detect if the locale is right-to-left language or not.

Usage

require rtl-detect lib

var rtlDetect = require('rtl-detect');

isRtlLang

This function will check if the locale is right-to-left language or not.

Examples:

var isRtl = rtlDetect.isRtlLang('ar-JO');
// isRtl will be true
var isRtl = rtlDetect.isRtlLang('ar_JO');
// isRtl will be true
var isRtl = rtlDetect.isRtlLang('ar');
// isRtl will be true
var isRtl = rtlDetect.isRtlLang('en-US');
// isRtl will be false

getLangDir

This function will get language direction for the locale.

Examples:

var langDir = rtlDetect.getLangDir('ar-JO');
// langDir will be 'rtl'
var langDir = rtlDetect.getLangDir('ar_JO');
// langDir will be 'rtl'
var langDir = rtlDetect.getLangDir('ar');
// langDir will be 'rtl'
var langDir = rtlDetect.getLangDir('en-US');
// langDir will be 'ltr'

Copyright 2015, Yahoo! Inc.

/rtl-detect/

    Package Sidebar

    Install

    npm i rtl-detect

    Weekly Downloads

    527,266

    Version

    1.1.2

    License

    BSD-3-Clause

    Unpacked Size

    26.9 kB

    Total Files

    15

    Last publish

    Collaborators

    • shadiabuhilal