Rocket.Chat.ReactNative/app/i18n/isRTL.ts

5 lines
275 B
TypeScript
Raw Normal View History

// https://github.com/zoontek/react-native-localize/blob/master/src/constants.ts#L5
const USES_RTL_LAYOUT = ['ar', 'ckb', 'fa', 'he', 'ks', 'lrc', 'mzn', 'ps', 'ug', 'ur', 'yi'];
export const isRTL = (locale?: string) => (locale ? USES_RTL_LAYOUT.includes(locale) : false);