@xylabs/array 2.9.3 → 2.10.0

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.
Files changed (60) hide show
  1. package/dist/containsAll.d.mts +3 -0
  2. package/dist/containsAll.d.ts +3 -0
  3. package/dist/containsAll.js +31 -0
  4. package/dist/containsAll.js.map +1 -0
  5. package/dist/containsAll.mjs +6 -0
  6. package/dist/containsAll.mjs.map +1 -0
  7. package/dist/distinct.d.mts +3 -0
  8. package/dist/distinct.d.ts +3 -0
  9. package/dist/distinct.js +31 -0
  10. package/dist/distinct.js.map +1 -0
  11. package/dist/distinct.mjs +6 -0
  12. package/dist/distinct.mjs.map +1 -0
  13. package/dist/flatten.d.mts +3 -0
  14. package/dist/flatten.d.ts +3 -0
  15. package/dist/flatten.js +34 -0
  16. package/dist/flatten.js.map +1 -0
  17. package/dist/flatten.mjs +9 -0
  18. package/dist/flatten.mjs.map +1 -0
  19. package/dist/index.d.mts +3 -0
  20. package/dist/index.d.ts +3 -0
  21. package/dist/index.js +46 -0
  22. package/dist/index.js.map +1 -0
  23. package/dist/index.mjs +17 -0
  24. package/dist/index.mjs.map +1 -0
  25. package/package.json +29 -15
  26. package/tsup.config.ts +14 -0
  27. package/dist/cjs/containsAll.js +0 -6
  28. package/dist/cjs/containsAll.js.map +0 -1
  29. package/dist/cjs/distinct.js +0 -6
  30. package/dist/cjs/distinct.js.map +0 -1
  31. package/dist/cjs/flatten.js +0 -9
  32. package/dist/cjs/flatten.js.map +0 -1
  33. package/dist/cjs/index.js +0 -7
  34. package/dist/cjs/index.js.map +0 -1
  35. package/dist/docs.json +0 -404
  36. package/dist/esm/containsAll.js +0 -2
  37. package/dist/esm/containsAll.js.map +0 -1
  38. package/dist/esm/distinct.js +0 -2
  39. package/dist/esm/distinct.js.map +0 -1
  40. package/dist/esm/flatten.js +0 -5
  41. package/dist/esm/flatten.js.map +0 -1
  42. package/dist/esm/index.js +0 -4
  43. package/dist/esm/index.js.map +0 -1
  44. package/dist/types/containsAll.d.ts +0 -2
  45. package/dist/types/containsAll.d.ts.map +0 -1
  46. package/dist/types/distinct.d.ts +0 -2
  47. package/dist/types/distinct.d.ts.map +0 -1
  48. package/dist/types/flatten.d.ts +0 -2
  49. package/dist/types/flatten.d.ts.map +0 -1
  50. package/dist/types/index.d.ts +0 -4
  51. package/dist/types/index.d.ts.map +0 -1
  52. package/docs/assets/highlight.css +0 -50
  53. package/docs/assets/main.js +0 -58
  54. package/docs/assets/search.js +0 -1
  55. package/docs/assets/style.css +0 -1367
  56. package/docs/functions/containsAll.html +0 -59
  57. package/docs/functions/distinct.html +0 -61
  58. package/docs/functions/flatten.html +0 -59
  59. package/docs/index.html +0 -84
  60. package/docs/modules.html +0 -46
@@ -0,0 +1,3 @@
1
+ declare const containsAll: <T>(source: T[], target: T[]) => boolean;
2
+
3
+ export { containsAll };
@@ -0,0 +1,3 @@
1
+ declare const containsAll: <T>(source: T[], target: T[]) => boolean;
2
+
3
+ export { containsAll };
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/containsAll.ts
21
+ var containsAll_exports = {};
22
+ __export(containsAll_exports, {
23
+ containsAll: () => containsAll
24
+ });
25
+ module.exports = __toCommonJS(containsAll_exports);
26
+ var containsAll = (source, target) => target.every((i) => source.includes(i));
27
+ // Annotate the CommonJS export names for ESM import in node:
28
+ 0 && (module.exports = {
29
+ containsAll
30
+ });
31
+ //# sourceMappingURL=containsAll.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/containsAll.ts"],"sourcesContent":["export const containsAll = <T>(source: T[], target: T[]) => target.every((i) => source.includes(i))\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAO,IAAM,cAAc,CAAI,QAAa,WAAgB,OAAO,MAAM,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;","names":[]}
@@ -0,0 +1,6 @@
1
+ // src/containsAll.ts
2
+ var containsAll = (source, target) => target.every((i) => source.includes(i));
3
+ export {
4
+ containsAll
5
+ };
6
+ //# sourceMappingURL=containsAll.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/containsAll.ts"],"sourcesContent":["export const containsAll = <T>(source: T[], target: T[]) => target.every((i) => source.includes(i))\n"],"mappings":";AAAO,IAAM,cAAc,CAAI,QAAa,WAAgB,OAAO,MAAM,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;","names":[]}
@@ -0,0 +1,3 @@
1
+ declare const distinct: <T>(value: T, index: number, array: T[]) => boolean;
2
+
3
+ export { distinct };
@@ -0,0 +1,3 @@
1
+ declare const distinct: <T>(value: T, index: number, array: T[]) => boolean;
2
+
3
+ export { distinct };
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/distinct.ts
21
+ var distinct_exports = {};
22
+ __export(distinct_exports, {
23
+ distinct: () => distinct
24
+ });
25
+ module.exports = __toCommonJS(distinct_exports);
26
+ var distinct = (value, index, array) => array.indexOf(value) === index;
27
+ // Annotate the CommonJS export names for ESM import in node:
28
+ 0 && (module.exports = {
29
+ distinct
30
+ });
31
+ //# sourceMappingURL=distinct.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/distinct.ts"],"sourcesContent":["export const distinct = <T>(value: T, index: number, array: T[]) => array.indexOf(value) === index\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAO,IAAM,WAAW,CAAI,OAAU,OAAe,UAAe,MAAM,QAAQ,KAAK,MAAM;","names":[]}
@@ -0,0 +1,6 @@
1
+ // src/distinct.ts
2
+ var distinct = (value, index, array) => array.indexOf(value) === index;
3
+ export {
4
+ distinct
5
+ };
6
+ //# sourceMappingURL=distinct.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/distinct.ts"],"sourcesContent":["export const distinct = <T>(value: T, index: number, array: T[]) => array.indexOf(value) === index\n"],"mappings":";AAAO,IAAM,WAAW,CAAI,OAAU,OAAe,UAAe,MAAM,QAAQ,KAAK,MAAM;","names":[]}
@@ -0,0 +1,3 @@
1
+ declare const flatten: <T>(a?: T | ConcatArray<T> | undefined, b?: T | ConcatArray<T> | undefined) => T[];
2
+
3
+ export { flatten };
@@ -0,0 +1,3 @@
1
+ declare const flatten: <T>(a?: T | ConcatArray<T> | undefined, b?: T | ConcatArray<T> | undefined) => T[];
2
+
3
+ export { flatten };
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/flatten.ts
21
+ var flatten_exports = {};
22
+ __export(flatten_exports, {
23
+ flatten: () => flatten
24
+ });
25
+ module.exports = __toCommonJS(flatten_exports);
26
+ var import_exists = require("@xylabs/exists");
27
+ var flatten = (a, b) => {
28
+ return [].concat(a).concat(b).filter(import_exists.exists);
29
+ };
30
+ // Annotate the CommonJS export names for ESM import in node:
31
+ 0 && (module.exports = {
32
+ flatten
33
+ });
34
+ //# sourceMappingURL=flatten.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/flatten.ts"],"sourcesContent":["import { exists } from '@xylabs/exists'\n\nexport const flatten = <T>(a?: T | ConcatArray<T>, b?: T | ConcatArray<T>): T[] => {\n return ([] as (T | undefined)[]).concat(a).concat(b).filter(exists)\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,oBAAuB;AAEhB,IAAM,UAAU,CAAI,GAAwB,MAAgC;AACjF,SAAQ,CAAC,EAAwB,OAAO,CAAC,EAAE,OAAO,CAAC,EAAE,OAAO,oBAAM;AACpE;","names":[]}
@@ -0,0 +1,9 @@
1
+ // src/flatten.ts
2
+ import { exists } from "@xylabs/exists";
3
+ var flatten = (a, b) => {
4
+ return [].concat(a).concat(b).filter(exists);
5
+ };
6
+ export {
7
+ flatten
8
+ };
9
+ //# sourceMappingURL=flatten.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/flatten.ts"],"sourcesContent":["import { exists } from '@xylabs/exists'\n\nexport const flatten = <T>(a?: T | ConcatArray<T>, b?: T | ConcatArray<T>): T[] => {\n return ([] as (T | undefined)[]).concat(a).concat(b).filter(exists)\n}\n"],"mappings":";AAAA,SAAS,cAAc;AAEhB,IAAM,UAAU,CAAI,GAAwB,MAAgC;AACjF,SAAQ,CAAC,EAAwB,OAAO,CAAC,EAAE,OAAO,CAAC,EAAE,OAAO,MAAM;AACpE;","names":[]}
@@ -0,0 +1,3 @@
1
+ export { containsAll } from './containsAll.mjs';
2
+ export { distinct } from './distinct.mjs';
3
+ export { flatten } from './flatten.mjs';
@@ -0,0 +1,3 @@
1
+ export { containsAll } from './containsAll.js';
2
+ export { distinct } from './distinct.js';
3
+ export { flatten } from './flatten.js';
package/dist/index.js ADDED
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ containsAll: () => containsAll,
24
+ distinct: () => distinct,
25
+ flatten: () => flatten
26
+ });
27
+ module.exports = __toCommonJS(src_exports);
28
+
29
+ // src/containsAll.ts
30
+ var containsAll = (source, target) => target.every((i) => source.includes(i));
31
+
32
+ // src/distinct.ts
33
+ var distinct = (value, index, array) => array.indexOf(value) === index;
34
+
35
+ // src/flatten.ts
36
+ var import_exists = require("@xylabs/exists");
37
+ var flatten = (a, b) => {
38
+ return [].concat(a).concat(b).filter(import_exists.exists);
39
+ };
40
+ // Annotate the CommonJS export names for ESM import in node:
41
+ 0 && (module.exports = {
42
+ containsAll,
43
+ distinct,
44
+ flatten
45
+ });
46
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts","../src/containsAll.ts","../src/distinct.ts","../src/flatten.ts"],"sourcesContent":["export * from './containsAll'\nexport * from './distinct'\nexport * from './flatten'\n","export const containsAll = <T>(source: T[], target: T[]) => target.every((i) => source.includes(i))\n","export const distinct = <T>(value: T, index: number, array: T[]) => array.indexOf(value) === index\n","import { exists } from '@xylabs/exists'\n\nexport const flatten = <T>(a?: T | ConcatArray<T>, b?: T | ConcatArray<T>): T[] => {\n return ([] as (T | undefined)[]).concat(a).concat(b).filter(exists)\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAO,IAAM,cAAc,CAAI,QAAa,WAAgB,OAAO,MAAM,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;;;ACA3F,IAAM,WAAW,CAAI,OAAU,OAAe,UAAe,MAAM,QAAQ,KAAK,MAAM;;;ACA7F,oBAAuB;AAEhB,IAAM,UAAU,CAAI,GAAwB,MAAgC;AACjF,SAAQ,CAAC,EAAwB,OAAO,CAAC,EAAE,OAAO,CAAC,EAAE,OAAO,oBAAM;AACpE;","names":[]}
package/dist/index.mjs ADDED
@@ -0,0 +1,17 @@
1
+ // src/containsAll.ts
2
+ var containsAll = (source, target) => target.every((i) => source.includes(i));
3
+
4
+ // src/distinct.ts
5
+ var distinct = (value, index, array) => array.indexOf(value) === index;
6
+
7
+ // src/flatten.ts
8
+ import { exists } from "@xylabs/exists";
9
+ var flatten = (a, b) => {
10
+ return [].concat(a).concat(b).filter(exists);
11
+ };
12
+ export {
13
+ containsAll,
14
+ distinct,
15
+ flatten
16
+ };
17
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/containsAll.ts","../src/distinct.ts","../src/flatten.ts"],"sourcesContent":["export const containsAll = <T>(source: T[], target: T[]) => target.every((i) => source.includes(i))\n","export const distinct = <T>(value: T, index: number, array: T[]) => array.indexOf(value) === index\n","import { exists } from '@xylabs/exists'\n\nexport const flatten = <T>(a?: T | ConcatArray<T>, b?: T | ConcatArray<T>): T[] => {\n return ([] as (T | undefined)[]).concat(a).concat(b).filter(exists)\n}\n"],"mappings":";AAAO,IAAM,cAAc,CAAI,QAAa,WAAgB,OAAO,MAAM,CAAC,MAAM,OAAO,SAAS,CAAC,CAAC;;;ACA3F,IAAM,WAAW,CAAI,OAAU,OAAe,UAAe,MAAM,QAAQ,KAAK,MAAM;;;ACA7F,SAAS,cAAc;AAEhB,IAAM,UAAU,CAAI,GAAwB,MAAgC;AACjF,SAAQ,CAAC,EAAwB,OAAO,CAAC,EAAE,OAAO,CAAC,EAAE,OAAO,MAAM;AACpE;","names":[]}
package/package.json CHANGED
@@ -11,33 +11,47 @@
11
11
  "url": "https://github.com/xylabs/sdk-js/issues"
12
12
  },
13
13
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
14
- "browser": "dist/esm/index.js",
15
- "main": "dist/cjs/index.js",
16
- "module": "dist/esm/index.js",
17
14
  "docs": "dist/docs.json",
18
- "types": "dist/types/index.d.ts",
15
+ "types": "dist/index.d.ts",
19
16
  "exports": {
20
17
  ".": {
21
- "node": {
22
- "import": "./dist/esm/index.js",
23
- "require": "./dist/cjs/index.js"
18
+ "require": {
19
+ "types": "./dist/index.d.ts",
20
+ "default": "./dist/index.js"
24
21
  },
25
- "browser": {
26
- "import": "./dist/esm/index.js",
27
- "require": "./dist/cjs/index.js"
28
- },
29
- "default": "./dist/esm/index.js"
22
+ "import": {
23
+ "types": "./dist/index.d.mts",
24
+ "default": "./dist/index.mjs"
25
+ }
30
26
  },
31
27
  "./dist/docs.json": {
32
28
  "default": "./dist/docs.json"
33
29
  },
30
+ "./cjs": {
31
+ "default": "./dist/index.js"
32
+ },
33
+ "./docs": {
34
+ "default": "./dist/docs.json"
35
+ },
36
+ "./esm": {
37
+ "default": "./dist/index.mjs"
38
+ },
34
39
  "./package.json": "./package.json"
35
40
  },
41
+ "main": "dist/index.js",
42
+ "module": "dist/index.mjs",
43
+ "scripts": {
44
+ "package-compile": "tsup && publint",
45
+ "package-recompile": "tsup && publint"
46
+ },
36
47
  "dependencies": {
37
- "@xylabs/exists": "^2.9.3"
48
+ "@xylabs/exists": "~2.10.0"
38
49
  },
39
50
  "devDependencies": {
40
- "@xylabs/ts-scripts-yarn3": "^2.17.17"
51
+ "@xylabs/ts-scripts-yarn3": "^2.19.5",
52
+ "@xylabs/tsconfig": "^2.19.5",
53
+ "publint": "^0.2.2",
54
+ "tsup": "^7.2.0"
41
55
  },
42
56
  "homepage": "https://xylabs.com",
43
57
  "keywords": [
@@ -54,5 +68,5 @@
54
68
  "url": "https://github.com/xylabs/sdk-js.git"
55
69
  },
56
70
  "sideEffects": false,
57
- "version": "2.9.3"
71
+ "version": "2.10.0"
58
72
  }
package/tsup.config.ts ADDED
@@ -0,0 +1,14 @@
1
+ import { defineConfig } from 'tsup'
2
+
3
+ // eslint-disable-next-line import/no-default-export
4
+ export default defineConfig({
5
+ bundle: true,
6
+ cjsInterop: true,
7
+ clean: true,
8
+ dts: true,
9
+ entry: ['src'],
10
+ format: ['cjs', 'esm'],
11
+ sourcemap: true,
12
+ splitting: false,
13
+ tsconfig: 'tsconfig.json',
14
+ })
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.containsAll = void 0;
4
- const containsAll = (source, target) => target.every((i) => source.includes(i));
5
- exports.containsAll = containsAll;
6
- //# sourceMappingURL=containsAll.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"containsAll.js","sourceRoot":"","sources":["../../src/containsAll.ts"],"names":[],"mappings":";;;AAAO,MAAM,WAAW,GAAG,CAAI,MAAW,EAAE,MAAW,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAA;AAAtF,QAAA,WAAW,eAA2E"}
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.distinct = void 0;
4
- const distinct = (value, index, array) => array.indexOf(value) === index;
5
- exports.distinct = distinct;
6
- //# sourceMappingURL=distinct.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"distinct.js","sourceRoot":"","sources":["../../src/distinct.ts"],"names":[],"mappings":";;;AAAO,MAAM,QAAQ,GAAG,CAAI,KAAQ,EAAE,KAAa,EAAE,KAAU,EAAE,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,KAAK,CAAA;AAArF,QAAA,QAAQ,YAA6E"}
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.flatten = void 0;
4
- const exists_1 = require("@xylabs/exists");
5
- const flatten = (a, b) => {
6
- return [].concat(a).concat(b).filter(exists_1.exists);
7
- };
8
- exports.flatten = flatten;
9
- //# sourceMappingURL=flatten.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"flatten.js","sourceRoot":"","sources":["../../src/flatten.ts"],"names":[],"mappings":";;;AAAA,2CAAuC;AAEhC,MAAM,OAAO,GAAG,CAAI,CAAsB,EAAE,CAAsB,EAAO,EAAE;IAChF,OAAQ,EAAwB,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,eAAM,CAAC,CAAA;AACrE,CAAC,CAAA;AAFY,QAAA,OAAO,WAEnB"}
package/dist/cjs/index.js DELETED
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./containsAll"), exports);
5
- tslib_1.__exportStar(require("./distinct"), exports);
6
- tslib_1.__exportStar(require("./flatten"), exports);
7
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;AAAA,wDAA6B;AAC7B,qDAA0B;AAC1B,oDAAyB"}