Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
private _mergeObjects(obj: T, src: T): T {
return mergeObjects(obj, src, (key: string, val: any): string | number | undefined => {
return isPlainObject(val) && val[this._typeIDKey] ? val[this._typeIDKey] : undefined;
});
}