@lssm/lib.utils-typescript 1.11.0 → 1.11.1

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 (61) hide show
  1. package/dist/lib/AwaitedResult.d.mts +1 -2
  2. package/dist/lib/BrowserNativeObject.d.mts +1 -2
  3. package/dist/lib/DeepInfiniteArray.d.mts +1 -2
  4. package/dist/lib/DeepKeepOnly.d.mts +1 -2
  5. package/dist/lib/DeepKey.d.mts +1 -2
  6. package/dist/lib/DeepMap.d.mts +1 -2
  7. package/dist/lib/DeepNullable.d.mts +1 -2
  8. package/dist/lib/DeepOr.d.mts +1 -2
  9. package/dist/lib/DeepPartial.d.mts +1 -2
  10. package/dist/lib/DeepReplace.d.mts +1 -2
  11. package/dist/lib/DeepReplaceNullByUndefined.d.mts +1 -2
  12. package/dist/lib/DeepValue.d.mts +1 -2
  13. package/dist/lib/DictionaryFromEnum.d.mts +1 -2
  14. package/dist/lib/DictionaryFromEnumMapping.d.mts +1 -2
  15. package/dist/lib/EmptyRecord.d.mts +1 -2
  16. package/dist/lib/Identified.d.mts +1 -2
  17. package/dist/lib/IdentifiedLabel.d.mts +1 -2
  18. package/dist/lib/IsAny.d.mts +1 -2
  19. package/dist/lib/Json.d.mts +1 -2
  20. package/dist/lib/KeepOnly.d.mts +1 -2
  21. package/dist/lib/Maybe.d.mts +1 -2
  22. package/dist/lib/MaybeArray.d.mts +1 -2
  23. package/dist/lib/NestedValue.d.mts +1 -2
  24. package/dist/lib/NonUndefined.d.mts +1 -2
  25. package/dist/lib/Primitive.d.mts +1 -2
  26. package/dist/lib/Replaced.d.mts +1 -2
  27. package/dist/lib/ReverseMap.d.mts +1 -2
  28. package/dist/lib/Satisfies.d.mts +1 -2
  29. package/dist/lib/StringKey.d.mts +1 -2
  30. package/dist/lib/StringKeysOnly.d.mts +1 -2
  31. package/package.json +3 -3
  32. package/dist/lib/AwaitedResult.d.mts.map +0 -1
  33. package/dist/lib/BrowserNativeObject.d.mts.map +0 -1
  34. package/dist/lib/DeepInfiniteArray.d.mts.map +0 -1
  35. package/dist/lib/DeepKeepOnly.d.mts.map +0 -1
  36. package/dist/lib/DeepKey.d.mts.map +0 -1
  37. package/dist/lib/DeepMap.d.mts.map +0 -1
  38. package/dist/lib/DeepNullable.d.mts.map +0 -1
  39. package/dist/lib/DeepOr.d.mts.map +0 -1
  40. package/dist/lib/DeepPartial.d.mts.map +0 -1
  41. package/dist/lib/DeepReplace.d.mts.map +0 -1
  42. package/dist/lib/DeepReplaceNullByUndefined.d.mts.map +0 -1
  43. package/dist/lib/DeepValue.d.mts.map +0 -1
  44. package/dist/lib/DictionaryFromEnum.d.mts.map +0 -1
  45. package/dist/lib/DictionaryFromEnumMapping.d.mts.map +0 -1
  46. package/dist/lib/EmptyRecord.d.mts.map +0 -1
  47. package/dist/lib/Identified.d.mts.map +0 -1
  48. package/dist/lib/IdentifiedLabel.d.mts.map +0 -1
  49. package/dist/lib/IsAny.d.mts.map +0 -1
  50. package/dist/lib/Json.d.mts.map +0 -1
  51. package/dist/lib/KeepOnly.d.mts.map +0 -1
  52. package/dist/lib/Maybe.d.mts.map +0 -1
  53. package/dist/lib/MaybeArray.d.mts.map +0 -1
  54. package/dist/lib/NestedValue.d.mts.map +0 -1
  55. package/dist/lib/NonUndefined.d.mts.map +0 -1
  56. package/dist/lib/Primitive.d.mts.map +0 -1
  57. package/dist/lib/Replaced.d.mts.map +0 -1
  58. package/dist/lib/ReverseMap.d.mts.map +0 -1
  59. package/dist/lib/Satisfies.d.mts.map +0 -1
  60. package/dist/lib/StringKey.d.mts.map +0 -1
  61. package/dist/lib/StringKeysOnly.d.mts.map +0 -1
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/AwaitedResult.d.ts
2
2
  type AwaitedResult<T extends (...args: any) => any> = Awaited<ReturnType<T>>;
3
3
  //#endregion
4
- export { AwaitedResult };
5
- //# sourceMappingURL=AwaitedResult.d.mts.map
4
+ export { AwaitedResult };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/BrowserNativeObject.d.ts
2
2
  declare type BrowserNativeObject = Date | FileList | File;
3
3
  //#endregion
4
- export { BrowserNativeObject };
5
- //# sourceMappingURL=BrowserNativeObject.d.mts.map
4
+ export { BrowserNativeObject };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/DeepInfiniteArray.d.ts
2
2
  declare type DeepInfiniteArray<T> = (T | DeepInfiniteArray<T>)[];
3
3
  //#endregion
4
- export { DeepInfiniteArray };
5
- //# sourceMappingURL=DeepInfiniteArray.d.mts.map
4
+ export { DeepInfiniteArray };
@@ -3,5 +3,4 @@ import { KeepOnly } from "./KeepOnly.mjs";
3
3
  //#region src/lib/DeepKeepOnly.d.ts
4
4
  type DeepKeepOnly<T, KeepType> = T | (T extends (infer U)[] ? KeepOnly<U, KeepType>[] : T extends Map<infer K, infer V> ? Map<KeepOnly<K, KeepType>, KeepOnly<V, KeepType>> : T extends Set<infer M> ? Set<KeepOnly<M, KeepType>> : KeepOnly<T, KeepType>);
5
5
  //#endregion
6
- export { DeepKeepOnly };
7
- //# sourceMappingURL=DeepKeepOnly.d.mts.map
6
+ export { DeepKeepOnly };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/DeepKey.d.ts
2
2
  type DeepKey<T, K extends keyof T = keyof T> = K extends string | number ? T[K] extends infer R ? `${K}` | (R extends Record<string, unknown> ? `${K}.${DeepKey<R>}` : never) : never : never;
3
3
  //#endregion
4
- export { DeepKey };
5
- //# sourceMappingURL=DeepKey.d.mts.map
4
+ export { DeepKey };
@@ -6,5 +6,4 @@ import { NonUndefined } from "./NonUndefined.mjs";
6
6
  //#region src/lib/DeepMap.d.ts
7
7
  declare type DeepMap<T, TValue> = IsAny<T> extends true ? any : T extends BrowserNativeObject | NestedValue ? TValue : T extends object ? { [K in keyof T]: DeepMap<NonUndefined<T[K]>, TValue> } : TValue;
8
8
  //#endregion
9
- export { DeepMap };
10
- //# sourceMappingURL=DeepMap.d.mts.map
9
+ export { DeepMap };
@@ -3,5 +3,4 @@ import { DeepOr } from "./DeepOr.mjs";
3
3
  //#region src/lib/DeepNullable.d.ts
4
4
  type DeepNullable<T> = DeepOr<T, null>;
5
5
  //#endregion
6
- export { DeepNullable };
7
- //# sourceMappingURL=DeepNullable.d.mts.map
6
+ export { DeepNullable };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/DeepOr.d.ts
2
2
  type DeepOr<T, OrValue> = T | (T extends (infer U)[] ? DeepOr<U, OrValue>[] : T extends Map<infer K, infer V> ? Map<DeepOr<K, OrValue>, DeepOr<V, OrValue>> : T extends Set<infer M> ? Set<DeepOr<M, OrValue>> : T extends object ? { [K in keyof T]: DeepOr<T[K], OrValue> | OrValue } : T);
3
3
  //#endregion
4
- export { DeepOr };
5
- //# sourceMappingURL=DeepOr.d.mts.map
4
+ export { DeepOr };
@@ -4,5 +4,4 @@
4
4
  */
5
5
  type DeepPartial<T> = { [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P] };
6
6
  //#endregion
7
- export { DeepPartial };
8
- //# sourceMappingURL=DeepPartial.d.mts.map
7
+ export { DeepPartial };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/DeepReplace.d.ts
2
2
  type DeepReplace<T, Search, Replace> = T extends (infer ArrayItemT)[] ? DeepReplace<ArrayItemT, Search, Replace>[] : T extends Map<infer MapKey, infer MapT> ? Map<DeepReplace<MapKey, Search, Replace>, DeepReplace<MapT, Search, Replace>> : T extends Set<infer SetT> ? Set<DeepReplace<SetT, Search, Replace>> : T extends object ? { [ObjKey in keyof T]: DeepReplace<T[ObjKey], Search, Replace> } : T extends Search ? Replace : T;
3
3
  //#endregion
4
- export { DeepReplace };
5
- //# sourceMappingURL=DeepReplace.d.mts.map
4
+ export { DeepReplace };
@@ -3,5 +3,4 @@ import { DeepReplace } from "./DeepReplace.mjs";
3
3
  //#region src/lib/DeepReplaceNullByUndefined.d.ts
4
4
  type DeepReplaceNullByUndefined<T> = DeepReplace<T, null, undefined>;
5
5
  //#endregion
6
- export { DeepReplaceNullByUndefined };
7
- //# sourceMappingURL=DeepReplaceNullByUndefined.d.mts.map
6
+ export { DeepReplaceNullByUndefined };
@@ -3,5 +3,4 @@ import { DeepKey } from "./DeepKey.mjs";
3
3
  //#region src/lib/DeepValue.d.ts
4
4
  type DeepValue<T, P extends DeepKey<T>> = P extends `${infer K}.${infer Rest}` ? T[(K extends `${infer R extends number}` ? R : K) & keyof T] extends infer S ? S extends never ? never : Rest extends DeepKey<S> ? DeepValue<S, Rest> : never : never : T[(P extends `${infer R extends number}` ? R : P) & keyof T];
5
5
  //#endregion
6
- export { DeepValue };
7
- //# sourceMappingURL=DeepValue.d.mts.map
6
+ export { DeepValue };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/DictionaryFromEnum.d.ts
2
2
  type DictionaryFromEnum<Enum, ObjMapping> = Record<keyof Enum, ObjMapping>;
3
3
  //#endregion
4
- export { DictionaryFromEnum };
5
- //# sourceMappingURL=DictionaryFromEnum.d.mts.map
4
+ export { DictionaryFromEnum };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/DictionaryFromEnumMapping.d.ts
2
2
  type DictionaryFromEnumMapping<Enum, Mapped, Mapping extends Record<keyof Enum, Mapped>> = { [k in keyof Enum]: Mapping[k] };
3
3
  //#endregion
4
- export { DictionaryFromEnumMapping };
5
- //# sourceMappingURL=DictionaryFromEnumMapping.d.mts.map
4
+ export { DictionaryFromEnumMapping };
@@ -3,5 +3,4 @@ type EmptyRecord = Record<string, never>;
3
3
  type UnknownRecord = Record<string, unknown>;
4
4
  type AnyRecord = Record<string, any>;
5
5
  //#endregion
6
- export { AnyRecord, EmptyRecord, UnknownRecord };
7
- //# sourceMappingURL=EmptyRecord.d.mts.map
6
+ export { AnyRecord, EmptyRecord, UnknownRecord };
@@ -3,5 +3,4 @@ interface Identified {
3
3
  id: string;
4
4
  }
5
5
  //#endregion
6
- export { Identified };
7
- //# sourceMappingURL=Identified.d.mts.map
6
+ export { Identified };
@@ -5,5 +5,4 @@ type IdentifiedLabel = Identified & {
5
5
  label: string;
6
6
  };
7
7
  //#endregion
8
- export { IdentifiedLabel };
9
- //# sourceMappingURL=IdentifiedLabel.d.mts.map
8
+ export { IdentifiedLabel };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/IsAny.d.ts
2
2
  declare type IsAny<T> = 0 extends 1 & T ? true : false;
3
3
  //#endregion
4
- export { IsAny };
5
- //# sourceMappingURL=IsAny.d.mts.map
4
+ export { IsAny };
@@ -12,5 +12,4 @@ interface NonJsonObject<ExtraTypes> {
12
12
  }
13
13
  type ExtendedJsonObject = NonJsonObject<bigint | Date>;
14
14
  //#endregion
15
- export { ExtendedJsonObject, JSONArray, JSONObject, JSONValue, NonJsonArray, NonJsonObject, NonJsonValue, PrimitiveJSONValue };
16
- //# sourceMappingURL=Json.d.mts.map
15
+ export { ExtendedJsonObject, JSONArray, JSONObject, JSONValue, NonJsonArray, NonJsonObject, NonJsonValue, PrimitiveJSONValue };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/KeepOnly.d.ts
2
2
  type KeepOnly<T, KeepType> = T extends object ? { [K in keyof T]: KeepOnly<T[K], KeepType> } : T extends KeepType ? T : never;
3
3
  //#endregion
4
- export { KeepOnly };
5
- //# sourceMappingURL=KeepOnly.d.mts.map
4
+ export { KeepOnly };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/Maybe.d.ts
2
2
  type Maybe<T> = T | null;
3
3
  //#endregion
4
- export { Maybe };
5
- //# sourceMappingURL=Maybe.d.mts.map
4
+ export { Maybe };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/MaybeArray.d.ts
2
2
  type MaybeArray<T> = T | T[];
3
3
  //#endregion
4
- export { MaybeArray };
5
- //# sourceMappingURL=MaybeArray.d.mts.map
4
+ export { MaybeArray };
@@ -4,5 +4,4 @@ declare type NestedValue<TValue extends object = object> = {
4
4
  [$NestedValue]: never;
5
5
  } & TValue;
6
6
  //#endregion
7
- export { NestedValue };
8
- //# sourceMappingURL=NestedValue.d.mts.map
7
+ export { NestedValue };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/NonUndefined.d.ts
2
2
  declare type NonUndefined<T> = T extends undefined ? never : T;
3
3
  //#endregion
4
- export { NonUndefined };
5
- //# sourceMappingURL=NonUndefined.d.mts.map
4
+ export { NonUndefined };
@@ -3,5 +3,4 @@ import { PrimitiveJSONValue } from "./Json.mjs";
3
3
  //#region src/lib/Primitive.d.ts
4
4
  declare type Primitive = PrimitiveJSONValue | symbol | bigint;
5
5
  //#endregion
6
- export { Primitive };
7
- //# sourceMappingURL=Primitive.d.mts.map
6
+ export { Primitive };
@@ -3,5 +3,4 @@ import { Primitive } from "./Primitive.mjs";
3
3
  //#region src/lib/Replaced.d.ts
4
4
  type Replaced<T, TReplace, TWith, TKeep = Primitive> = T extends TReplace | TKeep ? T extends TReplace ? TWith | Exclude<T, TReplace> : T : { [P in keyof T]: Replaced<T[P], TReplace, TWith, TKeep> };
5
5
  //#endregion
6
- export { Replaced };
7
- //# sourceMappingURL=Replaced.d.mts.map
6
+ export { Replaced };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/ReverseMap.d.ts
2
2
  type ReverseMap<T extends Record<keyof T, keyof any>> = { [K in keyof T as T[K]]: K };
3
3
  //#endregion
4
- export { ReverseMap };
5
- //# sourceMappingURL=ReverseMap.d.mts.map
4
+ export { ReverseMap };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/Satisfies.d.ts
2
2
  declare type Satisfies<ConstraintShape, ToValidate> = ConstraintShape extends ConstraintShape ? ToValidate : never;
3
3
  //#endregion
4
- export { Satisfies };
5
- //# sourceMappingURL=Satisfies.d.mts.map
4
+ export { Satisfies };
@@ -1,5 +1,4 @@
1
1
  //#region src/lib/StringKey.d.ts
2
2
  type StringKey<T> = { [K in keyof T]: T[K] extends string ? K : never }[keyof T];
3
3
  //#endregion
4
- export { StringKey };
5
- //# sourceMappingURL=StringKey.d.mts.map
4
+ export { StringKey };
@@ -3,5 +3,4 @@ import { StringKey } from "./StringKey.mjs";
3
3
  //#region src/lib/StringKeysOnly.d.ts
4
4
  type StringKeysOnly<T> = Pick<T, StringKey<T>>;
5
5
  //#endregion
6
- export { StringKeysOnly };
7
- //# sourceMappingURL=StringKeysOnly.d.mts.map
6
+ export { StringKeysOnly };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/lib.utils-typescript",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "scripts": {
5
5
  "clean": "rm -rf dist",
6
6
  "lint": "bun run lint:fix",
@@ -13,8 +13,8 @@
13
13
  "dev": "bun build:bundle --watch"
14
14
  },
15
15
  "devDependencies": {
16
- "@lssm/tool.typescript": "0.11.0",
17
- "@lssm/tool.tsdown": "0.12.0",
16
+ "@lssm/tool.typescript": "0.11.1",
17
+ "@lssm/tool.tsdown": "0.12.1",
18
18
  "tsdown": "^0.16.6",
19
19
  "typescript": "^5.9.3"
20
20
  },
@@ -1 +0,0 @@
1
- {"version":3,"file":"AwaitedResult.d.mts","names":[],"sources":["../../src/lib/AwaitedResult.ts"],"sourcesContent":[],"mappings":";KACY,iDAAiD,QAC3D,WAAW"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"BrowserNativeObject.d.mts","names":[],"sources":["../../src/lib/BrowserNativeObject.ts"],"sourcesContent":[],"mappings":";aAAoB,mBAAA,GAAsB,OAAO,WAAW"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepInfiniteArray.d.mts","names":[],"sources":["../../src/lib/DeepInfiniteArray.ts"],"sourcesContent":[],"mappings":";aAAoB,wBAAwB,IAAI,kBAAkB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepKeepOnly.d.mts","names":[],"sources":["../../src/lib/DeepKeepOnly.ts"],"sourcesContent":[],"mappings":";;;KAEY,4BACR,KACC,wBACG,SAAS,GAAG,cACZ,UAAU,wBACR,IAAI,SAAS,GAAG,WAAW,SAAS,GAAG,aACvC,UAAU,eACR,IAAI,SAAS,GAAG,aAChB,SAAS,GAAG"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepKey.d.mts","names":[],"sources":["../../src/lib/DeepKey.ts"],"sourcesContent":[],"mappings":";KAAY,2BAA2B,UAAU,KAAK,4BAClD,EAAE,wBAEO,OACF,UAAU,6BAA6B,KAAK,QAAQ"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepMap.d.mts","names":[],"sources":["../../src/lib/DeepMap.ts"],"sourcesContent":[],"mappings":";;;;;;aAKoB,qBAClB,MAAM,wBAGF,UAAU,sBAAsB,cAC9B,SACA,iCAEgB,IAAI,QAAQ,aAAa,EAAE,KAAK,SARxD,GAUU,MAVU"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepNullable.d.mts","names":[],"sources":["../../src/lib/DeepNullable.ts"],"sourcesContent":[],"mappings":";;;KAEY,kBAAkB,OAAO"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepOr.d.mts","names":[],"sources":["../../src/lib/DeepOr.ts"],"sourcesContent":[],"mappings":";KAAY,qBACR,KACC,wBACG,OAAO,GAAG,aACV,UAAU,wBACR,IAAI,OAAO,GAAG,UAAU,OAAO,GAAG,YAClC,UAAU,eACR,IAAI,OAAO,GAAG,YACd,2BARA,MAUgB,CAVV,GAUc,MAVd,CAUqB,CAVrB,CAUuB,CAVvB,CAAA,EAU2B,OAV3B,CAAA,GAUsC,OAVtC,EACd,GAWU,CAXV,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepPartial.d.mts","names":[],"sources":["../../src/lib/DeepPartial.ts"],"sourcesContent":[],"mappings":";;AAiBA;;AACmB,KADP,WACO,CAAA,CAAA,CAAA,GAAA,QAAE,MAAP,CAAO,IAAF,CAAE,CAAA,CAAA,CAAA,SAAA,MAAA,GAAoB,WAApB,CAAgC,CAAhC,CAAkC,CAAlC,CAAA,CAAA,GAAwC,CAAxC,CAA0C,CAA1C,CAAA,EAAgC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepReplace.d.mts","names":[],"sources":["../../src/lib/DeepReplace.ts"],"sourcesContent":[],"mappings":";KAAY,kCAAkC,iCAC1C,YAAY,YAAY,QAAQ,aAChC,UAAU,gCACR,IACE,YAAY,QAAQ,QAAQ,UAC5B,YAAY,MAAM,QAAQ,YAE5B,UAAU,kBACR,IAAI,YAAY,MAAM,QAAQ,YAC9B,gCATI,MAWiB,CAXN,GAWU,WAXV,CAWsB,CAXtB,CAWwB,MAXxB,CAAA,EAWiC,MAXjC,EAWyC,OAXzC,CAAA,EAAuB,GAapC,CAboC,SAa1B,MAb0B,GAclC,OAdkC,GAelC,CAfkC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepReplaceNullByUndefined.d.mts","names":[],"sources":["../../src/lib/DeepReplaceNullByUndefined.ts"],"sourcesContent":[],"mappings":";;;KAEY,gCAAgC,YAAY"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DeepValue.d.mts","names":[],"sources":["../../src/lib/DeepValue.ts"],"sourcesContent":[],"mappings":";;;KAEY,uBAEA,QAAQ,MAChB,uCACA,GAAG,wCAAwC,IAAI,WAAW,qBACxD,0BAEE,aAAa,QAAQ,KACnB,UAAU,GAAG,wBAGnB,GAAG,wCAAwC,IAAI,WAAW"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DictionaryFromEnum.d.mts","names":[],"sources":["../../src/lib/DictionaryFromEnum.ts"],"sourcesContent":[],"mappings":";KAAY,uCAAuC,aAC3C,MACN"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DictionaryFromEnumMapping.d.mts","names":[],"sources":["../../src/lib/DictionaryFromEnumMapping.ts"],"sourcesContent":[],"mappings":";KAAY,wDAGM,aAAa,MAAM,mBAHzB,MAKE,IALF,GAKS,OALT,CAKiB,CALQ,CAAA,EAGN"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"EmptyRecord.d.mts","names":[],"sources":["../../src/lib/EmptyRecord.ts"],"sourcesContent":[],"mappings":";KAAY,WAAA,GAAc;AAAd,KACA,aAAA,GAAgB,MADF,CAAA,MAAM,EAAA,OAAA,CAAA;AACpB,KAEA,SAAA,GAAY,MAFC,CAAA,MAAG,EAAM,GAAA,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Identified.d.mts","names":[],"sources":["../../src/lib/Identified.ts"],"sourcesContent":[],"mappings":";UAAiB,UAAA;EAAA,EAAA,EAAA,MAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"IdentifiedLabel.d.mts","names":[],"sources":["../../src/lib/IdentifiedLabel.ts"],"sourcesContent":[],"mappings":";;;KAEY,eAAA,GAAkB;;AAA9B,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"IsAny.d.mts","names":[],"sources":["../../src/lib/IsAny.ts"],"sourcesContent":[],"mappings":";aAAoB,yBAAyB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Json.d.mts","names":[],"sources":["../../src/lib/Json.ts"],"sourcesContent":[],"mappings":";aAAoB,kBAAA;AAAA,aAMA,SAAA,GAAY,kBANM,GAMe,SANf,GAM2B,UAN3B;AAMlB,UAGH,SAAA,SAAkB,KAHN,CAGY,SAHZ,CAAA,CAAA;AAAwB,UAKpC,UAAA,CALoC;EAAY,CAAA,GAAA,EAAA,MAAA,CAAA,EAMhD,SANgD;;AAGhD,aAMG,YANqB,CAAA,UAAN,CAAA,GAO/B,kBAPoC,GAQpC,YARoC,CAQvB,UARuB,CAAA,GASpC,aAToC,CAStB,UATsB,CAAA,GAUpC,UAVoC;AAEvB,UAWA,YAVA,CAAA,UAAS,CAAA,SAWhB,KAXgB,CAWV,YAXU,CAWG,UAXH,CAAA,CAAA,CAAA,CAG1B;AACI,UASa,aATb,CAAA,UAAA,CAAA,CAAA;EACa,CAAA,GAAA,EAAA,MAAA,CAAA,EASA,YATA,CASa,UATb,CAAA;;AACC,KAWN,kBAAA,GAAqB,aAXf,CAAA,MAAA,GAWsC,IAXtC,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"KeepOnly.d.mts","names":[],"sources":["../../src/lib/KeepOnly.ts"],"sourcesContent":[],"mappings":";KAAY,wBAAwB,2BAAxB,MAEM,CAFE,GAEE,QAFF,CAEW,CAFX,CAEa,CAFb,CAAA,EAEiB,QAFjB,CAAA,EAAgB,GAIhC,CAJgC,SAItB,QAJsB,GAK9B,CAL8B,GAAA,KAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Maybe.d.mts","names":[],"sources":["../../src/lib/Maybe.ts"],"sourcesContent":[],"mappings":";KAAY,WAAW"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"MaybeArray.d.mts","names":[],"sources":["../../src/lib/MaybeArray.ts"],"sourcesContent":[],"mappings":";KAAY,gBAAgB,IAAI"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"NestedValue.d.mts","names":[],"sources":["../../src/lib/NestedValue.ts"],"sourcesContent":[],"mappings":";cAAc;AAAA,aAEM,WAFqB,CAAA,eAAA,MAAA,GAAA,MAAA,CAAA,GAAA;EAErB,CACjB,YAAA,CAD4B,EAAA,KAAA;IAE3B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"NonUndefined.d.mts","names":[],"sources":["../../src/lib/NonUndefined.ts"],"sourcesContent":[],"mappings":";aAAoB,kBAAkB,8BAA8B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Primitive.d.mts","names":[],"sources":["../../src/lib/Primitive.ts"],"sourcesContent":[],"mappings":";;;aAEoB,SAAA,GAAY"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Replaced.d.mts","names":[],"sources":["../../src/lib/Replaced.ts"],"sourcesContent":[],"mappings":";;;KAGY,qCAAqC,aAAa,UAC1D,WACA,QACA,UAAU,WACR,QAAQ,QAAQ,GAAG,YACnB,kBAEY,IAAI,SAAS,EAAE,IAAI,UAAU,OAAO,QAPtD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"ReverseMap.d.mts","names":[],"sources":["../../src/lib/ReverseMap.ts"],"sourcesContent":[],"mappings":";KACY,qBAAqB,aAAa,yBAAlC,MACE,CADQ,IACH,CADG,CACD,CADC,CAAA,GACI,CADJ,EAAwB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Satisfies.d.mts","names":[],"sources":["../../src/lib/Satisfies.ts"],"sourcesContent":[],"mappings":";aAAoB,yCAClB,wBAAwB,kBAAkB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"StringKey.d.mts","names":[],"sources":["../../src/lib/StringKey.ts"],"sourcesContent":[],"mappings":";KAAY,uBAAA,MACE,CADO,GACH,CADG,CACD,CADC,CAAA,SAAA,MAAA,GACmB,CADnB,GAAA,KAAA,EACP,CAAA,MACN,CADM,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"StringKeysOnly.d.mts","names":[],"sources":["../../src/lib/StringKeysOnly.ts"],"sourcesContent":[],"mappings":";;;KAEY,oBAAoB,KAAK,GAAG,UAAU"}