(variable: string, key?: string, accessor?: string[])
| 31 | } |
| 32 | |
| 33 | function accessorMultiple(variable: string, key?: string, accessor?: string[]) { |
| 34 | const all = (accessor ?? []).map((a) => accessorSingle(variable, key, a)); |
| 35 | |
| 36 | return all; |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Returns a string that can be used to access the given field. |
no test coverage detected