@lowentry/utils 1.19.3 → 1.19.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowentry/utils",
3
- "version": "1.19.3",
3
+ "version": "1.19.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./index.js",
package/src/LeUtils.js CHANGED
@@ -43,7 +43,8 @@ export const LeUtils = {
43
43
  * @param {*} other The other value to compare.
44
44
  * @returns {boolean} Returns true if the values are equivalent.
45
45
  */
46
- equals:FastDeepEqual,
46
+ equals:
47
+ (value, other) => FastDeepEqual(value, other),
47
48
 
48
49
  /**
49
50
  * Returns a deep copy of the given value.