2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-02-19 15:36:18 -05:00
|
|
|
import { assert } from "../testing/asserts.ts";
|
|
|
|
|
2019-05-30 08:59:30 -04:00
|
|
|
export function deepAssign(
|
|
|
|
target: Record<string, unknown>,
|
|
|
|
...sources: object[]
|
|
|
|
): object | undefined {
|
2019-03-28 12:31:15 -04:00
|
|
|
for (let i = 0; i < sources.length; i++) {
|
|
|
|
const source = sources[i];
|
|
|
|
if (!source || typeof source !== `object`) {
|
|
|
|
return;
|
|
|
|
}
|
2019-11-13 13:42:34 -05:00
|
|
|
Object.entries(source).forEach(([key, value]: [string, unknown]): void => {
|
|
|
|
if (value instanceof Date) {
|
|
|
|
target[key] = new Date(value);
|
|
|
|
return;
|
2019-03-28 12:31:15 -04:00
|
|
|
}
|
2019-11-13 13:42:34 -05:00
|
|
|
if (!value || typeof value !== `object`) {
|
|
|
|
target[key] = value;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (Array.isArray(value)) {
|
|
|
|
target[key] = [];
|
|
|
|
}
|
|
|
|
// value is an Object
|
|
|
|
if (typeof target[key] !== `object` || !target[key]) {
|
|
|
|
target[key] = {};
|
|
|
|
}
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(value);
|
2020-02-07 02:23:38 -05:00
|
|
|
deepAssign(target[key] as Record<string, unknown>, value);
|
2019-11-13 13:42:34 -05:00
|
|
|
});
|
2019-03-28 12:31:15 -04:00
|
|
|
}
|
|
|
|
return target;
|
|
|
|
}
|