move change in other branch

This commit is contained in:
einhornimmond 2025-10-03 15:46:37 +02:00
parent adf1ab7048
commit 3b289a934d

View File

@ -33,7 +33,7 @@ function composeDataString(data: (string | Object)[]): string {
return data
.map((d) => {
// if it is a object and his toString function return only garbage
if (d && typeof d === 'object' && d.toString() === '[object Object]') {
if (typeof d === 'object' && d.toString() === '[object Object]') {
return inspect(d, )
}
if (d) {