Map every element in this data array to the given key, and then flatten it.
(key: string)
| 106 | |
| 107 | /** Map every element in this data array to the given key, and then flatten it.*/ |
| 108 | to(key: string): DataArray<unknown>; |
| 109 | /** Map every element in this data array to the given key; unlike to(), does not flatten the result. */ |
| 110 | into(key: string): DataArray<unknown>; |
| 111 |
no outgoing calls
no test coverage detected