@cellaware/utils 3.0.9 → 3.0.10

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/util.js +1 -1
  2. package/package.json +1 -1
package/dist/util.js CHANGED
@@ -96,7 +96,7 @@ export function getDataSignature(rowData, checkRowCnt) {
96
96
  dataColDefs[colIdx].number = false;
97
97
  dataColDefs[colIdx].locked = true;
98
98
  }
99
- else if (!!val) {
99
+ else if (val != null) {
100
100
  dataColDefs[colIdx].number = true;
101
101
  // Do not lock as number just yet -- keep looking.
102
102
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "3.0.9",
3
+ "version": "3.0.10",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",