summaryrefslogtreecommitdiff
path: root/std/util/deep_assign.ts
diff options
context:
space:
mode:
authorYusuke Sakurai <kerokerokerop@gmail.com>2020-02-07 16:23:38 +0900
committerGitHub <noreply@github.com>2020-02-07 02:23:38 -0500
commitc2986891f6aac87cec98232735945af756e6643f (patch)
tree716dc739f438bf740fa960b87fc022d569090802 /std/util/deep_assign.ts
parentea6179f7dce89416f1586ee18c2f437e68eabd38 (diff)
remove non-null assertion operator from std (part1) (#3900)
Diffstat (limited to 'std/util/deep_assign.ts')
-rw-r--r--std/util/deep_assign.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/util/deep_assign.ts b/std/util/deep_assign.ts
index 36777795c..9b57e45dc 100644
--- a/std/util/deep_assign.ts
+++ b/std/util/deep_assign.ts
@@ -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;