remove non-null assertion operator from std (part1) (#3900)

This commit is contained in:
Yusuke Sakurai 2020-02-07 16:23:38 +09:00 committed by GitHub
parent ea6179f7dc
commit c2986891f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 147 additions and 89 deletions

View file

@ -24,7 +24,7 @@ export function deepAssign(
if (typeof target[key] !== `object` || !target[key]) {
target[key] = {};
}
deepAssign(target[key] as Record<string, unknown>, value!);
deepAssign(target[key] as Record<string, unknown>, value);
});
}
return target;