6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import rtlDetect from 'rtl-detect';
|
|
|
|
export function getLangDir(locale: string) {
|
|
return rtlDetect.getLangDir(locale);
|
|
}
|