I changed this line to:
out += ${key}:${JSON.stringify(obj[key])}\n;
and it worked for me.
Below is the result

to fixed the 'Cannot convert object to primitive value' error I was having.
I am also new and did not want to propose this to the code until I was positive it was indeed an error.
|
out += `${key}: ${obj[key]}\n`; |
I changed this line to:

out +=${key}:${JSON.stringify(obj[key])}\n;and it worked for me.
Below is the result
to fixed the 'Cannot convert object to primitive value' error I was having.
I am also new and did not want to propose this to the code until I was positive it was indeed an error.
ran/libraries/helpers.js
Line 9 in 9879d90