@atlaspack/utils 2.14.5-dev.1c70d50f9.99 → 2.14.5-dev.69
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/CHANGELOG.md +0 -33
- package/lib/index.js +0 -6
- package/lib/index.js.map +1 -1
- package/package.json +8 -10
- package/src/collection.js +0 -10
- package/src/index.js +0 -1
- package/benchmark.js +0 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,38 +1,5 @@
|
|
|
1
1
|
# @atlaspack/utils
|
|
2
2
|
|
|
3
|
-
## 2.15.2
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Updated dependencies [[`644b157`](https://github.com/atlassian-labs/atlaspack/commit/644b157dee72a871acc2d0facf0b87b8eea51956)]:
|
|
8
|
-
- @atlaspack/feature-flags@2.18.2
|
|
9
|
-
|
|
10
|
-
## 2.15.1
|
|
11
|
-
|
|
12
|
-
### Patch Changes
|
|
13
|
-
|
|
14
|
-
- Updated dependencies [[`ef3d622`](https://github.com/atlassian-labs/atlaspack/commit/ef3d6228f4e006702198a19c61e051d194d325cb), [`26aa9c5`](https://github.com/atlassian-labs/atlaspack/commit/26aa9c599d2be45ce1438a74c5fa22f39b9b554b), [`0501255`](https://github.com/atlassian-labs/atlaspack/commit/05012550da35b05ce7d356a8cc29311e7f9afdca)]:
|
|
15
|
-
- @atlaspack/logger@2.14.11
|
|
16
|
-
- @atlaspack/feature-flags@2.18.1
|
|
17
|
-
|
|
18
|
-
## 2.15.0
|
|
19
|
-
|
|
20
|
-
### Minor Changes
|
|
21
|
-
|
|
22
|
-
- [#622](https://github.com/atlassian-labs/atlaspack/pull/622) [`e39c6cf`](https://github.com/atlassian-labs/atlaspack/commit/e39c6cf05f7e95ce5420dbcea66f401b1cbd397c) Thanks [@benjervis](https://github.com/benjervis)! - Add the `setIntersectStatic` method that doesn't mutate the passed in Sets
|
|
23
|
-
|
|
24
|
-
### Patch Changes
|
|
25
|
-
|
|
26
|
-
- Updated dependencies [[`10fbcfb`](https://github.com/atlassian-labs/atlaspack/commit/10fbcfbfa49c7a83da5d7c40983e36e87f524a75), [`85c52d3`](https://github.com/atlassian-labs/atlaspack/commit/85c52d3f7717b3c84a118d18ab98cfbfd71dcbd2)]:
|
|
27
|
-
- @atlaspack/feature-flags@2.18.0
|
|
28
|
-
|
|
29
|
-
## 2.14.11
|
|
30
|
-
|
|
31
|
-
### Patch Changes
|
|
32
|
-
|
|
33
|
-
- Updated dependencies [[`73ea3c4`](https://github.com/atlassian-labs/atlaspack/commit/73ea3c4d85d4401fdd15abcbf988237e890e7ad3), [`b1b3693`](https://github.com/atlassian-labs/atlaspack/commit/b1b369317c66f8a431c170df2ebba4fa5b2e38ef)]:
|
|
34
|
-
- @atlaspack/feature-flags@2.17.0
|
|
35
|
-
|
|
36
3
|
## 2.14.10
|
|
37
4
|
|
|
38
5
|
### Patch Changes
|
package/lib/index.js
CHANGED
|
@@ -3447,7 +3447,6 @@ $parcel$export(module.exports, "setDifference", () => $2ee306eb47a905ca$export$8
|
|
|
3447
3447
|
$parcel$export(module.exports, "setSymmetricDifference", () => $2ee306eb47a905ca$export$be646fbd7a3fda37);
|
|
3448
3448
|
$parcel$export(module.exports, "setEqual", () => $2ee306eb47a905ca$export$dd7d5a65a6b6780f);
|
|
3449
3449
|
$parcel$export(module.exports, "setIntersect", () => $2ee306eb47a905ca$export$9404cfefeb010e68);
|
|
3450
|
-
$parcel$export(module.exports, "setIntersectStatic", () => $2ee306eb47a905ca$export$25266bb285978950);
|
|
3451
3450
|
$parcel$export(module.exports, "setUnion", () => $2ee306eb47a905ca$export$667066422fa0af46);
|
|
3452
3451
|
$parcel$export(module.exports, "resolveConfig", () => $cc7044c885d3b7c6$export$7eca4ea16d4c8343);
|
|
3453
3452
|
$parcel$export(module.exports, "resolveConfigSync", () => $cc7044c885d3b7c6$export$d175e66e9fcd7b75);
|
|
@@ -36717,11 +36716,6 @@ function $2ee306eb47a905ca$export$be646fbd7a3fda37(a, b) {
|
|
|
36717
36716
|
function $2ee306eb47a905ca$export$9404cfefeb010e68(a, b) {
|
|
36718
36717
|
for (let entry of a)if (!b.has(entry)) a.delete(entry);
|
|
36719
36718
|
}
|
|
36720
|
-
function $2ee306eb47a905ca$export$25266bb285978950(a, b) {
|
|
36721
|
-
let intersection = new Set();
|
|
36722
|
-
for (let entry of a)if (b.has(entry)) intersection.add(entry);
|
|
36723
|
-
return intersection;
|
|
36724
|
-
}
|
|
36725
36719
|
function $2ee306eb47a905ca$export$667066422fa0af46(a, b) {
|
|
36726
36720
|
return new Set([
|
|
36727
36721
|
...a,
|