@office-open/xml 0.6.3 → 0.6.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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -0
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -133,6 +133,7 @@ function unescapeXml(str) {
133
133
  return str.replace(ENTITY_PATTERN, (match) => ENTITY_MAP[match]);
134
134
  }
135
135
  function nativeTypeValue(value) {
136
+ if (value === "") return value;
136
137
  const n = Number(value);
137
138
  if (!isNaN(n)) return n;
138
139
  const lower = value.toLowerCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@office-open/xml",
3
- "version": "0.6.3",
3
+ "version": "0.6.5",
4
4
  "description": "XML parsing and serialization for Office Open XML. Zero dependencies, drop-in replacement for xml + xml-js.",
5
5
  "keywords": [
6
6
  "office-open",