tfose5-xlsx 3.5.5 → 3.5.6

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/README.md CHANGED
@@ -1 +1 @@
1
- # ![Version](https://img.shields.io/badge/version-3.5.5-green.svg)
1
+ # ![Version](https://img.shields.io/badge/version-3.5.6-green.svg)
@@ -114,7 +114,7 @@ function parseSheet(sheetRows, allOtherSheetRows) {
114
114
  }) : undefined;
115
115
  }
116
116
  else {
117
- fieldValue = r[ci] ? converterFactory.build(type).convert(r[ci], type) : undefined;
117
+ fieldValue = typeof r[ci] == 'undefined' ? undefined : converterFactory.build(type).convert(r[ci], type);
118
118
  }
119
119
  const fieldParts = field.split('.');
120
120
  let obj = memo;
package/package.json CHANGED
@@ -24,5 +24,5 @@
24
24
  "test": "mocha -t 30s -r ./node_modules/ts-node/register/index.js --exit",
25
25
  "version": "ts-node script version"
26
26
  },
27
- "version": "3.5.5"
27
+ "version": "3.5.6"
28
28
  }