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 CHANGED
@@ -1,3 +1,8 @@
1
+ 5.3.3 / 24.05.2022
2
+ ==================
3
+
4
+ * Added `trim: false` option.
5
+
1
6
  5.3.0 / 18.05.2022
2
7
  ==================
3
8
 
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