@parcel/utils 2.0.0-nightly.1221 → 2.0.0-nightly.1223
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/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/package.json +7 -7
- package/src/collection.js +5 -0
- package/test/collection.test.js +13 -1
package/lib/index.js
CHANGED
|
@@ -36222,6 +36222,7 @@ function $9631335a11debdd4$var$sortEntry(entry) {
|
|
|
36222
36222
|
function $9631335a11debdd4$export$8bd517cc5b3722f7(a, b) {
|
|
36223
36223
|
let difference = new Set();
|
|
36224
36224
|
for (let e of a)if (!b.has(e)) difference.add(e);
|
|
36225
|
+
for (let d of b)if (!a.has(d)) difference.add(d);
|
|
36225
36226
|
return difference;
|
|
36226
36227
|
}
|
|
36227
36228
|
function $9631335a11debdd4$export$9404cfefeb010e68(a, b) {
|