(line, direction)
| 209 | // false for lines that are fully left-to-right, and an array of |
| 210 | // BidiSpan objects otherwise. |
| 211 | export function getOrder(line, direction) { |
| 212 | let order = line.order |
| 213 | if (order == null) order = line.order = bidiOrdering(line.text, direction) |
| 214 | return order |
| 215 | } |
no outgoing calls
no test coverage detected