(input: any, mapFn: (x: any) => DeepMapResult)
| 49 | * that the node should be processed recursively. |
| 50 | */ |
| 51 | export function deepMap(input: any, mapFn: (x: any) => DeepMapResult): any| |
| 52 | any[] { |
| 53 | return deepMapInternal(input, mapFn); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * @param seen: A Map of known object mappings (i.e., memoized results of |
no test coverage detected
searching dependent graphs…