mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-05 19:06:37 +02:00
16 lines
293 B
JavaScript
16 lines
293 B
JavaScript
/**
|
|
* Copyright 2015, Yahoo! Inc.
|
|
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
|
|
*/
|
|
'use strict';
|
|
|
|
var rtlDetect = require('./lib/rtl-detect');
|
|
|
|
module.exports = {
|
|
|
|
isRtlLang: rtlDetect.isRtlLang,
|
|
|
|
getLangDir: rtlDetect.getLangDir
|
|
|
|
};
|