* Merges all sources into the target recursively. Ignores `undefined` values.
(target: T, ...sources: Dictionary[])
| 285 | * Merges all sources into the target recursively. Ignores `undefined` values. |
| 286 | */ |
| 287 | static mergeConfig<T>(target: T, ...sources: Dictionary[]): T { |
| 288 | return Utils._merge(target, sources, true); |
| 289 | } |
| 290 | |
| 291 | /** |
| 292 | * Merges all sources into the target recursively. |
no test coverage detected