read-excel-file 5.3.2 → 5.3.3
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/CHANGELOG.md +5 -0
- package/README.md +8 -0
- package/bundle/read-excel-file.min.js +1 -1
- package/bundle/read-excel-file.min.js.map +1 -1
- package/commonjs/read/parseCellValue.js +20 -19
- package/commonjs/read/parseCellValue.js.map +1 -1
- package/modules/read/parseCellValue.js +20 -19
- package/modules/read/parseCellValue.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +10 -6
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -338,6 +338,14 @@ When using `readXlsx()` with a `schema` parameter, all schema columns having typ
|
|
|
338
338
|
readXlsxFile(file, { dateFormat: 'mm/dd/yyyy' })
|
|
339
339
|
```
|
|
340
340
|
|
|
341
|
+
## Trim
|
|
342
|
+
|
|
343
|
+
By default, it automatically trims all string values. To disable this feature, pass `trim: false` option.
|
|
344
|
+
|
|
345
|
+
```js
|
|
346
|
+
readXlsxFile(file, { trim: false })
|
|
347
|
+
```
|
|
348
|
+
|
|
341
349
|
## Limitations
|
|
342
350
|
|
|
343
351
|
### Performance
|