@sdeverywhere/compile 0.7.4 → 0.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sdeverywhere/compile",
3
- "version": "0.7.4",
3
+ "version": "0.7.5",
4
4
  "description": "The core Vensim to C compiler for the SDEverywhere tool suite.",
5
5
  "type": "module",
6
6
  "files": [
@@ -224,8 +224,8 @@ export let readCsv = (pathname, delimiter = ',') => {
224
224
  delimiter,
225
225
  columns: false,
226
226
  trim: true,
227
- skip_empty_lines: true,
228
- skip_records_with_empty_values: true
227
+ skip_empty_lines: false,
228
+ skip_records_with_empty_values: false
229
229
  }
230
230
  try {
231
231
  let data = B.read(pathname)