@office-open/xml 0.6.2 → 0.6.4
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/dist/index.mjs +1 -0
- 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();
|