From e0b43240cb1e5640237429c4b15b34dfcf33a8c9 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sun, 31 Mar 2024 20:42:49 +0900 Subject: [PATCH] fix: add null handling --- src/functions.ts | 4 ++-- src/logged.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/functions.ts b/src/functions.ts index fa09c4b..59c41ce 100644 --- a/src/functions.ts +++ b/src/functions.ts @@ -135,7 +135,7 @@ export function imObjectContainedLogSync( exclude?: string[]; } ): string { - if (options && typeof ocv === 'object') { + if (options && typeof ocv === 'object' && ocv !== null) { if (options.include && options.include.length > 0) { return JSON.stringify( includeObjectSync(ocv, { paths: options.include }) @@ -148,7 +148,7 @@ export function imObjectContainedLogSync( } } - if (typeof ocv === "object") { + if (typeof ocv === "object" && ocv !== null) { return JSON.stringify(ocv); } else { return `${ocv}` diff --git a/src/logged.ts b/src/logged.ts index 3983517..10911b2 100644 --- a/src/logged.ts +++ b/src/logged.ts @@ -171,7 +171,7 @@ function overrideBuild, R>( ) { return r['then']((r: any) => { const resultLogged = Array.isArray(returnsData) - ? typeof r === "object" + ? typeof r === "object" && r !== null ? "WITH " + returnsData.map(({ name, path }) => { const value = getItemByPathSync(r, path); @@ -198,7 +198,7 @@ function overrideBuild, R>( }) } else { const resultLogged = Array.isArray(returnsData) - ? typeof r === "object" + ? typeof r === "object" && r !== null ? "WITH " + returnsData.map(({ name, path }) => { const value = getItemByPathSync(r, path);