fix: add null handling

This commit is contained in:
p-sw 2024-03-31 20:42:49 +09:00
parent 323404e072
commit e0b43240cb
2 changed files with 4 additions and 4 deletions

View File

@ -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}`

View File

@ -171,7 +171,7 @@ function overrideBuild<F extends Array<any>, 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<F extends Array<any>, 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);