@legalplace/lplogic 2.3.3 → 2.3.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/LpLogic.js +1 -1
  2. package/package.json +1 -1
package/dist/LpLogic.js CHANGED
@@ -42,7 +42,7 @@ var parseNumber = function (value) {
42
42
  return value;
43
43
  };
44
44
  var cleanString = function (value) {
45
- var raw = typeof value === "number" ? value.toString() : value.trim();
45
+ var raw = typeof value === "number" ? value.toString() : (value || "").trim();
46
46
  return raw
47
47
  .normalize("NFD")
48
48
  .replace(/[\u0300-\u036f]/g, "")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/lplogic",
3
- "version": "2.3.3",
3
+ "version": "2.3.5",
4
4
  "description": "LegalPlace LpLogic",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {