diginext-utils 3.13.3 → 3.13.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/object.js CHANGED
@@ -2,6 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.isEqual = exports.isObject = exports.iterate = exports.objectToArray = exports.toArray = exports.toFloat = exports.toInt = exports.toBool = exports.isNull = void 0;
4
4
  const isNull = (object) => {
5
+ if (object instanceof File)
6
+ return false;
5
7
  if (typeof object == "undefined")
6
8
  return true;
7
9
  if (object == "")
package/esm/object.js CHANGED
@@ -1,4 +1,6 @@
1
1
  export const isNull = (object) => {
2
+ if (object instanceof File)
3
+ return false;
2
4
  if (typeof object == "undefined")
3
5
  return true;
4
6
  if (object == "")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diginext-utils",
3
- "version": "3.13.3",
3
+ "version": "3.13.4",
4
4
  "sideEffects": false,
5
5
  "readme": "README.md",
6
6
  "homepage": "https://wearetopgroup.com",