@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 +1 -3
- package/dist/bbn.js.map +1 -1
- package/dist/fn/object/mutateArray.js +1 -3
- package/package.json +1 -1
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
|
-
|
|
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;
|