@bbn/bbn 1.0.186 → 1.0.187

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/bbn.js CHANGED
@@ -9311,9 +9311,7 @@ var mutateArray = function (a1, a2) {
9311
9311
  var a1Ordered = [];
9312
9312
  // Build a1Ordered to have the same order and contents as a2
9313
9313
  a2.forEach(function (item) {
9314
- if (mapA2.has((0,_string_hash_js__WEBPACK_IMPORTED_MODULE_1__.hash)(item))) {
9315
- a1Ordered.push(item);
9316
- }
9314
+ a1Ordered.push(item);
9317
9315
  });
9318
9316
  // Remove items from a1 that are not in a2
9319
9317
  var i = a1.length;