(lang: Lang)
| 59 | }; |
| 60 | |
| 61 | export const textDirection = (lang: Lang) => { |
| 62 | switch (lang) { |
| 63 | case "ar": |
| 64 | // case "fa": |
| 65 | // case "he": |
| 66 | return "rtl"; |
| 67 | default: |
| 68 | return "ltr"; |
| 69 | } |
| 70 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected