fix: add null handling
This commit is contained in:
parent
323404e072
commit
e0b43240cb
@ -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}`
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user