@internal
(v: readonly [string, SortDirection])
| 81 | |
| 82 | /** @internal */ |
| 83 | function pairToMap(v: readonly [string, SortDirection]): SortForCmd { |
| 84 | return new Map([[`${v[0]}`, prepareDirection([v[1]])]]); |
| 85 | } |
| 86 | |
| 87 | /** @internal */ |
| 88 | function deepToMap(t: ReadonlyArray<readonly [string, SortDirection]>): SortForCmd { |
no test coverage detected