(target: T, ...sources: any[])
| 23 | } |
| 24 | |
| 25 | export function merge<T>(target: T, ...sources: any[]): T { |
| 26 | return mergeWith(target, ...sources, undefined); |
| 27 | } |
| 28 | |
| 29 | export function mergeWith<T>(target: T, ...args: any[]): T { |
| 30 | const customizer: ((a: any, b: any, key: string) => any) | undefined = args.pop(); |
no test coverage detected