fix(core): update
This commit is contained in:
parent
6bee853cd2
commit
cf69e5436c
@ -119,7 +119,9 @@ export class TsTest {
|
|||||||
// create an array that will later be joined into a string.
|
// create an array that will later be joined into a string.
|
||||||
const stringArray = [];
|
const stringArray = [];
|
||||||
|
|
||||||
if (typeof obj === 'object' && obj.join === undefined) {
|
if (typeof obj === 'object' && typeof obj.toString === 'function') {
|
||||||
|
stringArray.push(obj.toString());
|
||||||
|
} else if (typeof obj === 'object' && obj.join === undefined) {
|
||||||
stringArray.push('{');
|
stringArray.push('{');
|
||||||
for (const prop of Object.keys(obj)) {
|
for (const prop of Object.keys(obj)) {
|
||||||
stringArray.push(prop, ': ', convertToText(obj[prop]), ',');
|
stringArray.push(prop, ': ', convertToText(obj[prop]), ',');
|
||||||
|
Loading…
Reference in New Issue
Block a user