diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-05-30 14:59:30 +0200 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-30 08:59:30 -0400 |
| commit | 50a79584cb12129b3db1ef3e0eb9d0c8b9f20b62 (patch) | |
| tree | ee9a90a8b8018c03b1e1a6ace07abdaa494ea90d /testing/format.ts | |
| parent | 80b3c486f6222f65b52eb2eca903b67312e8ce0c (diff) | |
chore: Implement strict mode (denoland/deno_std#453)
Original: https://github.com/denoland/deno_std/commit/be24677d15494e83eea2e99bfc5ccfdde31cb892
Diffstat (limited to 'testing/format.ts')
| -rw-r--r-- | testing/format.ts | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/testing/format.ts b/testing/format.ts index 8ed066eb0..af8391b23 100644 --- a/testing/format.ts +++ b/testing/format.ts @@ -525,16 +525,10 @@ const getConfig = (options: Options): Config => ({ */ // eslint-disable-next-line @typescript-eslint/no-explicit-any export function format(val: any, options: Optional<Options> = {}): string { - const opts = Object.keys(DEFAULT_OPTIONS).reduce( - (acc: Options, k: keyof Options): unknown => { - const opt = options[k]; - if (typeof opt === "undefined") { - return { ...acc, [k]: DEFAULT_OPTIONS[k] }; - } - return { ...acc, [k]: opt }; - }, - {} - ) as Options; + const opts: Options = { + ...DEFAULT_OPTIONS, + ...options + }; const basicResult = printBasicValue(val, opts); if (basicResult !== null) { return basicResult; |
