Synthoid / ExportSheetData

Add-on for Google Sheets that allows sheets to be exported as JSON or XML.
MIT License
236 stars 46 forks source link

(JSON) Cell arrays export number arrays as string arrays #51

Closed Synthoid closed 6 years ago

Synthoid commented 6 years ago

Exporting cell arrays populated by numbers seems to export an array of strings. For example, a cell with content:

200, 1.5

Should export as:

[200, 1.5]

But is currently exporting as:

["200", "1.5"]

Synthoid commented 6 years ago

This is actually exporting ALL arrays as string arrays. Bools and numbers are both affected.

Synthoid commented 6 years ago

This issue has been fixed and will be released with v44.