(locale: string)
| 698 | * 3rd party alternatives like [`rtl-detect`](https://www.npmjs.com/package/rtl-detect) can work around this issue. |
| 699 | */ |
| 700 | export function getLocaleDirection(locale: string): 'ltr' | 'rtl' { |
| 701 | const data = ɵfindLocaleData(locale); |
| 702 | return data[ɵLocaleDataIndex.Directionality]; |
| 703 | } |
| 704 | |
| 705 | /** |
| 706 | * Retrieves the first value that is defined in an array, going backwards from an index position. |
no outgoing calls
no test coverage detected