inibase 1.0.0-rc.53 → 1.0.0-rc.54

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.
@@ -217,7 +217,7 @@ export const isEqual = (originalValue, comparedAtValue, fieldType) => {
217
217
  return Number(originalValue) === Number(comparedAtValue);
218
218
  // Default comparison.
219
219
  default:
220
- return originalValue === comparedAtValue;
220
+ return originalValue == comparedAtValue;
221
221
  }
222
222
  };
223
223
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inibase",
3
- "version": "1.0.0-rc.53",
3
+ "version": "1.0.0-rc.54",
4
4
  "author": {
5
5
  "name": "Karim Amahtil",
6
6
  "email": "karim.amahtil@gmail.com"