fix: add null handling
This commit is contained in:
parent
323404e072
commit
e0b43240cb
@ -135,7 +135,7 @@ export function imObjectContainedLogSync(
|
|||||||
exclude?: string[];
|
exclude?: string[];
|
||||||
}
|
}
|
||||||
): string {
|
): string {
|
||||||
if (options && typeof ocv === 'object') {
|
if (options && typeof ocv === 'object' && ocv !== null) {
|
||||||
if (options.include && options.include.length > 0) {
|
if (options.include && options.include.length > 0) {
|
||||||
return JSON.stringify(
|
return JSON.stringify(
|
||||||
includeObjectSync(ocv, { paths: options.include })
|
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);
|
return JSON.stringify(ocv);
|
||||||
} else {
|
} else {
|
||||||
return `${ocv}`
|
return `${ocv}`
|
||||||
|
@ -171,7 +171,7 @@ function overrideBuild<F extends Array<any>, R>(
|
|||||||
) {
|
) {
|
||||||
return r['then']((r: any) => {
|
return r['then']((r: any) => {
|
||||||
const resultLogged = Array.isArray(returnsData)
|
const resultLogged = Array.isArray(returnsData)
|
||||||
? typeof r === "object"
|
? typeof r === "object" && r !== null
|
||||||
? "WITH " +
|
? "WITH " +
|
||||||
returnsData.map(({ name, path }) => {
|
returnsData.map(({ name, path }) => {
|
||||||
const value = getItemByPathSync(r, path);
|
const value = getItemByPathSync(r, path);
|
||||||
@ -198,7 +198,7 @@ function overrideBuild<F extends Array<any>, R>(
|
|||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
const resultLogged = Array.isArray(returnsData)
|
const resultLogged = Array.isArray(returnsData)
|
||||||
? typeof r === "object"
|
? typeof r === "object" && r !== null
|
||||||
? "WITH " +
|
? "WITH " +
|
||||||
returnsData.map(({ name, path }) => {
|
returnsData.map(({ name, path }) => {
|
||||||
const value = getItemByPathSync(r, path);
|
const value = getItemByPathSync(r, path);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user