config: forgot to remove print
This commit is contained in:
parent
6a043ce106
commit
2c47d839db
1 changed files with 0 additions and 1 deletions
|
|
@ -28,7 +28,6 @@ const convertSettings = <T extends object>(obj: T): Settings<T> =>
|
|||
|
||||
const updateSection = (from: { [k: string]: any }, to: { [k: string]: any }, path = "") => {
|
||||
for (const [k, v] of Object.entries(from)) {
|
||||
print(`${path}${k}:`, to.hasOwnProperty(k));
|
||||
if (to.hasOwnProperty(k)) {
|
||||
if (isObject(v)) updateSection(v, to[k], `${path}${k}.`);
|
||||
else to[k].set(v);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue