@firestitch/common 12.5.4 → 12.6.0

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.
@@ -1466,7 +1466,7 @@
1466
1466
  }
1467
1467
 
1468
1468
  function isObject(value) {
1469
- return !!value && typeof value === 'object';
1469
+ return !!value && typeof value === 'object' && !Array.isArray(value);
1470
1470
  }
1471
1471
 
1472
1472
  function throttle(func, wait) {