@dxos/util 0.6.7-staging.1976059 → 0.6.7
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/lib/browser/index.mjs +0 -21
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node/index.cjs +0 -21
- package/dist/lib/node/index.cjs.map +3 -3
- package/dist/lib/node/meta.json +1 -1
- package/dist/types/src/array.d.ts.map +1 -1
- package/dist/types/src/assign.d.ts.map +1 -1
- package/dist/types/src/callback.d.ts.map +1 -1
- package/dist/types/src/chunk-array.d.ts.map +1 -1
- package/dist/types/src/complex.d.ts +1 -7
- package/dist/types/src/complex.d.ts.map +1 -1
- package/dist/types/src/defer-function.d.ts.map +1 -1
- package/dist/types/src/defer.d.ts.map +1 -1
- package/dist/types/src/di-key.d.ts +3 -2
- package/dist/types/src/di-key.d.ts.map +1 -1
- package/dist/types/src/entry.d.ts.map +1 -1
- package/dist/types/src/for-each-async.d.ts.map +1 -1
- package/dist/types/src/join-tables.d.ts.map +1 -1
- package/dist/types/src/map-values.d.ts.map +1 -1
- package/dist/types/src/map.d.ts.map +1 -1
- package/dist/types/src/order.d.ts.map +1 -1
- package/dist/types/src/params.d.ts.map +1 -1
- package/dist/types/src/reducers.d.ts.map +1 -1
- package/dist/types/src/safe-await.d.ts.map +1 -1
- package/dist/types/src/sort.d.ts.map +1 -1
- package/dist/types/src/types.d.ts.map +1 -1
- package/dist/types/src/uint8array.d.ts +1 -0
- package/dist/types/src/uint8array.d.ts.map +1 -1
- package/package.json +6 -6
- package/src/complex.ts +0 -28
|
@@ -326,27 +326,6 @@ var ComplexSet = class {
|
|
|
326
326
|
get [Symbol.toStringTag]() {
|
|
327
327
|
return "ComplexSet";
|
|
328
328
|
}
|
|
329
|
-
union(other) {
|
|
330
|
-
throw new Error("Method not implemented.");
|
|
331
|
-
}
|
|
332
|
-
intersection(other) {
|
|
333
|
-
throw new Error("Method not implemented.");
|
|
334
|
-
}
|
|
335
|
-
difference(other) {
|
|
336
|
-
throw new Error("Method not implemented.");
|
|
337
|
-
}
|
|
338
|
-
symmetricDifference(other) {
|
|
339
|
-
throw new Error("Method not implemented.");
|
|
340
|
-
}
|
|
341
|
-
isSubsetOf(other) {
|
|
342
|
-
throw new Error("Method not implemented.");
|
|
343
|
-
}
|
|
344
|
-
isSupersetOf(other) {
|
|
345
|
-
throw new Error("Method not implemented.");
|
|
346
|
-
}
|
|
347
|
-
isDisjointFrom(other) {
|
|
348
|
-
throw new Error("Method not implemented.");
|
|
349
|
-
}
|
|
350
329
|
};
|
|
351
330
|
var makeSet = (projection) => {
|
|
352
331
|
return class BoundComplexSet extends ComplexSet {
|