@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.
@@ -8,9 +8,7 @@ var mutateArray = function (a1, a2) {
8
8
  var a1Ordered = [];
9
9
  // Build a1Ordered to have the same order and contents as a2
10
10
  a2.forEach(function (item) {
11
- if (mapA2.has(hash(item))) {
12
- a1Ordered.push(item);
13
- }
11
+ a1Ordered.push(item);
14
12
  });
15
13
  // Remove items from a1 that are not in a2
16
14
  var i = a1.length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "1.0.186",
3
+ "version": "1.0.187",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",