inferred-types 0.40.5 → 0.40.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/constants/Comma.js +1 -1
- package/dist/constants/Never.js +1 -1
- package/dist/constants/NoDefaultValue.js +1 -1
- package/dist/constants/NotDefined.js +1 -1
- package/dist/constants/TypeComparisons.js +1 -1
- package/dist/constants/index.js +22 -22
- package/dist/constants/tsconfig.tsbuildinfo +1 -1
- package/dist/inferred-types/index.d.ts +3 -3
- package/dist/inferred-types/index.d.ts.map +1 -1
- package/dist/inferred-types/index.js +3 -3
- package/dist/inferred-types/tsconfig.tsbuildinfo +1 -1
- package/dist/runtime/boolean-logic/ifChar.js +1 -1
- package/dist/runtime/boolean-logic/index.js +19 -19
- package/dist/runtime/combinators/index.js +3 -3
- package/dist/runtime/dictionary/get.js +1 -1
- package/dist/runtime/dictionary/index.js +13 -13
- package/dist/runtime/errors/index.js +1 -1
- package/dist/runtime/functional/index.js +2 -2
- package/dist/runtime/functions/index.js +1 -1
- package/dist/runtime/index.js +14 -14
- package/dist/runtime/initializers/index.js +8 -8
- package/dist/runtime/lists/createConverter.js +1 -1
- package/dist/runtime/lists/getEach.js +1 -1
- package/dist/runtime/lists/index.js +15 -15
- package/dist/runtime/lists/indexOf.js +1 -1
- package/dist/runtime/literals/ifLowercase.js +1 -1
- package/dist/runtime/literals/ifUppercase.js +1 -1
- package/dist/runtime/literals/index.js +30 -30
- package/dist/runtime/literals/pluralize.js +1 -1
- package/dist/runtime/literals/split.js +1 -1
- package/dist/runtime/runtime-types/createType.js +1 -1
- package/dist/runtime/runtime-types/describeType.js +1 -1
- package/dist/runtime/runtime-types/index.js +8 -8
- package/dist/runtime/runtime-types/typeTuples.js +1 -1
- package/dist/runtime/sets/index.js +1 -1
- package/dist/runtime/state/index.js +2 -2
- package/dist/runtime/type-conversion/index.js +9 -9
- package/dist/runtime/type-guards/higher-order/endsWith.js +1 -1
- package/dist/runtime/type-guards/higher-order/index.js +6 -6
- package/dist/runtime/type-guards/higher-order/isEqual.js +1 -1
- package/dist/runtime/type-guards/higher-order/isLength.js +1 -1
- package/dist/runtime/type-guards/higher-order/startsWith.js +1 -1
- package/dist/runtime/type-guards/index.js +33 -33
- package/dist/runtime/type-guards/isAlpha.js +1 -1
- package/dist/runtime/type-guards/isFalsy.js +1 -1
- package/dist/runtime/type-guards/isNumericString.js +1 -1
- package/dist/runtime/type-guards/isTruthy.js +1 -1
- package/dist/runtime/type-guards/isTypeToken.js +1 -1
- package/dist/runtime/type-guards/runtime-type-guards.js +1 -1
- package/dist/types/base-types/fns/index.js +3 -3
- package/dist/types/base-types/functional/index.js +1 -1
- package/dist/types/base-types/index.js +24 -24
- package/dist/types/boolean-logic/branching/index.js +66 -66
- package/dist/types/boolean-logic/combinators/index.js +3 -3
- package/dist/types/boolean-logic/index.js +5 -5
- package/dist/types/boolean-logic/narrowing/index.js +2 -2
- package/dist/types/boolean-logic/operators/index.js +74 -74
- package/dist/types/classes/index.js +1 -1
- package/dist/types/containers/index.js +3 -3
- package/dist/types/dictionary/index.js +40 -40
- package/dist/types/errors/index.js +4 -4
- package/dist/types/functional/index.js +2 -2
- package/dist/types/functions/index.js +8 -8
- package/dist/types/index.js +17 -17
- package/dist/types/kv/index.js +4 -4
- package/dist/types/lists/extractors/2nd-order/index.js +10 -10
- package/dist/types/lists/extractors/index.js +4 -4
- package/dist/types/lists/index.js +32 -32
- package/dist/types/literals/index.js +10 -10
- package/dist/types/numeric-literals/index.js +19 -19
- package/dist/types/runtime-types/index.js +10 -10
- package/dist/types/sets/index.js +11 -11
- package/dist/types/string-literals/casing/index.js +12 -12
- package/dist/types/string-literals/character-sets/brackets/index.js +3 -3
- package/dist/types/string-literals/character-sets/index.js +26 -26
- package/dist/types/string-literals/character-sets/quotation-marks/index.js +6 -6
- package/dist/types/string-literals/index.js +37 -37
- package/dist/types/string-literals/options/index.js +2 -2
- package/dist/types/tuples/index.js +7 -7
- package/dist/types/type-conversion/index.js +38 -38
- package/package.json +3 -3
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
export * from "./CouldHaveValue";
|
|
2
|
-
export * from "./Defined";
|
|
3
|
-
export * from "./Something";
|
|
4
|
-
export * from "./Nothing";
|
|
5
|
-
export * from "./NotNull";
|
|
6
|
-
export * from "./AnyObject";
|
|
7
|
-
export * from "./IndexableObject";
|
|
8
|
-
export * from "./IndexedObject";
|
|
9
|
-
export * from "./EmptyObject";
|
|
10
|
-
export * from "./AnyFunction";
|
|
11
|
-
export * from "./AnyArray";
|
|
12
|
-
export * from "./IdentityFunction";
|
|
13
|
-
export * from "./Scalar";
|
|
14
|
-
export * from "./ScalarNotSymbol";
|
|
15
|
-
export * from "./Container";
|
|
16
|
-
export * from "./Tuple";
|
|
17
|
-
export * from "./NumericSign";
|
|
18
|
-
export * from "./Digital";
|
|
19
|
-
export * from "./Indexable";
|
|
20
|
-
export * from "./FalsyValue";
|
|
21
|
-
export * from "./ObjectKey";
|
|
22
|
-
export * from "./NarrowObject";
|
|
23
|
-
export * from "./fns/index";
|
|
24
|
-
export * from "./functional/index";
|
|
1
|
+
export * from "./CouldHaveValue.js";
|
|
2
|
+
export * from "./Defined.js";
|
|
3
|
+
export * from "./Something.js";
|
|
4
|
+
export * from "./Nothing.js";
|
|
5
|
+
export * from "./NotNull.js";
|
|
6
|
+
export * from "./AnyObject.js";
|
|
7
|
+
export * from "./IndexableObject.js";
|
|
8
|
+
export * from "./IndexedObject.js";
|
|
9
|
+
export * from "./EmptyObject.js";
|
|
10
|
+
export * from "./AnyFunction.js";
|
|
11
|
+
export * from "./AnyArray.js";
|
|
12
|
+
export * from "./IdentityFunction.js";
|
|
13
|
+
export * from "./Scalar.js";
|
|
14
|
+
export * from "./ScalarNotSymbol.js";
|
|
15
|
+
export * from "./Container.js";
|
|
16
|
+
export * from "./Tuple.js";
|
|
17
|
+
export * from "./NumericSign.js";
|
|
18
|
+
export * from "./Digital.js";
|
|
19
|
+
export * from "./Indexable.js";
|
|
20
|
+
export * from "./FalsyValue.js";
|
|
21
|
+
export * from "./ObjectKey.js";
|
|
22
|
+
export * from "./NarrowObject.js";
|
|
23
|
+
export * from "./fns/index.js";
|
|
24
|
+
export * from "./functional/index.js";
|
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
export * from "./IfAllLiteral";
|
|
2
|
-
export * from "./IfScalar";
|
|
3
|
-
export * from "./IfDefined";
|
|
4
|
-
export * from "./IfOr";
|
|
5
|
-
export * from "./IfOptionalScalar";
|
|
6
|
-
export * from "./IfNull";
|
|
7
|
-
export * from "./IfSymbol";
|
|
8
|
-
export * from "./IfTruthy";
|
|
9
|
-
export * from "./IfSomeTruthy";
|
|
10
|
-
export * from "./IfAllExtend";
|
|
11
|
-
export * from "./IfEmptyContainer";
|
|
12
|
-
export * from "./IfError";
|
|
13
|
-
export * from "./IfErrorCondition";
|
|
14
|
-
export * from "./IfNotError";
|
|
15
|
-
export * from "./IfSingularNoun";
|
|
16
|
-
export * from "./IfEqualLength";
|
|
17
|
-
export * from "./IfSomeExtend";
|
|
18
|
-
export * from "./IfDotPath";
|
|
19
|
-
export * from "./IfValidDotPath";
|
|
20
|
-
export * from "./IfHasCharacters";
|
|
21
|
-
export * from "./IfChar";
|
|
22
|
-
export * from "./IfValidKey";
|
|
23
|
-
export * from "./IfBoolean";
|
|
24
|
-
export * from "./IfGreaterThan";
|
|
25
|
-
export * from "./IfTrue";
|
|
26
|
-
export * from "./IfIndexable";
|
|
27
|
-
export * from "./IfIndexAt";
|
|
28
|
-
export * from "./IfNumber";
|
|
29
|
-
export * from "./IfFalse";
|
|
30
|
-
export * from "./IfMaybeTrue";
|
|
31
|
-
export * from "./IfReadonlyObject";
|
|
32
|
-
export * from "./IfMaybeFalse";
|
|
33
|
-
export * from "./IfReturns";
|
|
34
|
-
export * from "./IfFalsy";
|
|
35
|
-
export * from "./IfObject";
|
|
36
|
-
export * from "./IfContains";
|
|
37
|
-
export * from "./IfReadonlyArray";
|
|
38
|
-
export * from "./IfStartsWith";
|
|
39
|
-
export * from "./IfArray";
|
|
40
|
-
export * from "./IfAnd";
|
|
41
|
-
export * from "./IfNotNever";
|
|
42
|
-
export * from "./IfNever";
|
|
43
|
-
export * from "./IfSomeEqual";
|
|
44
|
-
export * from "./IfFnWithParams";
|
|
45
|
-
export * from "./IfFnWithoutParams";
|
|
46
|
-
export * from "./IfFunction";
|
|
47
|
-
export * from "./IfExtends";
|
|
48
|
-
export * from "./IfRef";
|
|
49
|
-
export * from "./IfExtendsAll";
|
|
50
|
-
export * from "./IfExtendsSome";
|
|
51
|
-
export * from "./IfWide";
|
|
52
|
-
export * from "./IfString";
|
|
53
|
-
export * from "./IfEqual";
|
|
54
|
-
export * from "./IfStringLiteral";
|
|
55
|
-
export * from "./IfNumericLiteral";
|
|
56
|
-
export * from "./IfBooleanLiteral";
|
|
57
|
-
export * from "./IfLiteral";
|
|
58
|
-
export * from "./IfNotLiteral";
|
|
59
|
-
export * from "./IfLength";
|
|
60
|
-
export * from "./IfObjectLiteral";
|
|
61
|
-
export * from "./IfNotEqual";
|
|
62
|
-
export * from "./IfUnion";
|
|
63
|
-
export * from "./IfNarrowlyContains";
|
|
64
|
-
export * from "./IfContainer";
|
|
65
|
-
export * from "./IfUndefined";
|
|
66
|
-
export * from "./IfTuple";
|
|
1
|
+
export * from "./IfAllLiteral.js";
|
|
2
|
+
export * from "./IfScalar.js";
|
|
3
|
+
export * from "./IfDefined.js";
|
|
4
|
+
export * from "./IfOr.js";
|
|
5
|
+
export * from "./IfOptionalScalar.js";
|
|
6
|
+
export * from "./IfNull.js";
|
|
7
|
+
export * from "./IfSymbol.js";
|
|
8
|
+
export * from "./IfTruthy.js";
|
|
9
|
+
export * from "./IfSomeTruthy.js";
|
|
10
|
+
export * from "./IfAllExtend.js";
|
|
11
|
+
export * from "./IfEmptyContainer.js";
|
|
12
|
+
export * from "./IfError.js";
|
|
13
|
+
export * from "./IfErrorCondition.js";
|
|
14
|
+
export * from "./IfNotError.js";
|
|
15
|
+
export * from "./IfSingularNoun.js";
|
|
16
|
+
export * from "./IfEqualLength.js";
|
|
17
|
+
export * from "./IfSomeExtend.js";
|
|
18
|
+
export * from "./IfDotPath.js";
|
|
19
|
+
export * from "./IfValidDotPath.js";
|
|
20
|
+
export * from "./IfHasCharacters.js";
|
|
21
|
+
export * from "./IfChar.js";
|
|
22
|
+
export * from "./IfValidKey.js";
|
|
23
|
+
export * from "./IfBoolean.js";
|
|
24
|
+
export * from "./IfGreaterThan.js";
|
|
25
|
+
export * from "./IfTrue.js";
|
|
26
|
+
export * from "./IfIndexable.js";
|
|
27
|
+
export * from "./IfIndexAt.js";
|
|
28
|
+
export * from "./IfNumber.js";
|
|
29
|
+
export * from "./IfFalse.js";
|
|
30
|
+
export * from "./IfMaybeTrue.js";
|
|
31
|
+
export * from "./IfReadonlyObject.js";
|
|
32
|
+
export * from "./IfMaybeFalse.js";
|
|
33
|
+
export * from "./IfReturns.js";
|
|
34
|
+
export * from "./IfFalsy.js";
|
|
35
|
+
export * from "./IfObject.js";
|
|
36
|
+
export * from "./IfContains.js";
|
|
37
|
+
export * from "./IfReadonlyArray.js";
|
|
38
|
+
export * from "./IfStartsWith.js";
|
|
39
|
+
export * from "./IfArray.js";
|
|
40
|
+
export * from "./IfAnd.js";
|
|
41
|
+
export * from "./IfNotNever.js";
|
|
42
|
+
export * from "./IfNever.js";
|
|
43
|
+
export * from "./IfSomeEqual.js";
|
|
44
|
+
export * from "./IfFnWithParams.js";
|
|
45
|
+
export * from "./IfFnWithoutParams.js";
|
|
46
|
+
export * from "./IfFunction.js";
|
|
47
|
+
export * from "./IfExtends.js";
|
|
48
|
+
export * from "./IfRef.js";
|
|
49
|
+
export * from "./IfExtendsAll.js";
|
|
50
|
+
export * from "./IfExtendsSome.js";
|
|
51
|
+
export * from "./IfWide.js";
|
|
52
|
+
export * from "./IfString.js";
|
|
53
|
+
export * from "./IfEqual.js";
|
|
54
|
+
export * from "./IfStringLiteral.js";
|
|
55
|
+
export * from "./IfNumericLiteral.js";
|
|
56
|
+
export * from "./IfBooleanLiteral.js";
|
|
57
|
+
export * from "./IfLiteral.js";
|
|
58
|
+
export * from "./IfNotLiteral.js";
|
|
59
|
+
export * from "./IfLength.js";
|
|
60
|
+
export * from "./IfObjectLiteral.js";
|
|
61
|
+
export * from "./IfNotEqual.js";
|
|
62
|
+
export * from "./IfUnion.js";
|
|
63
|
+
export * from "./IfNarrowlyContains.js";
|
|
64
|
+
export * from "./IfContainer.js";
|
|
65
|
+
export * from "./IfUndefined.js";
|
|
66
|
+
export * from "./IfTuple.js";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./And";
|
|
2
|
-
export * from "./Or";
|
|
3
|
-
export * from "./Not";
|
|
1
|
+
export * from "./And.js";
|
|
2
|
+
export * from "./Or.js";
|
|
3
|
+
export * from "./Not.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./LogicalCombinator";
|
|
2
|
-
export * from "./operators/index";
|
|
3
|
-
export * from "./combinators/index";
|
|
4
|
-
export * from "./branching/index";
|
|
5
|
-
export * from "./narrowing/index";
|
|
1
|
+
export * from "./LogicalCombinator.js";
|
|
2
|
+
export * from "./operators/index.js";
|
|
3
|
+
export * from "./combinators/index.js";
|
|
4
|
+
export * from "./branching/index.js";
|
|
5
|
+
export * from "./narrowing/index.js";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./AsPropertyKey";
|
|
2
|
-
export * from "./AsIndexOf";
|
|
1
|
+
export * from "./AsPropertyKey.js";
|
|
2
|
+
export * from "./AsIndexOf.js";
|
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
export * from "./AllExtend";
|
|
2
|
-
export * from "./AllLiteral";
|
|
3
|
-
export * from "./Contains";
|
|
4
|
-
export * from "./ContainsAll";
|
|
5
|
-
export * from "./DoesExtend";
|
|
6
|
-
export * from "./DoesNotExtend";
|
|
7
|
-
export * from "./ExtendsAll";
|
|
8
|
-
export * from "./ExtendsSome";
|
|
9
|
-
export * from "./ExtendsNone";
|
|
10
|
-
export * from "./EndsWith";
|
|
11
|
-
export * from "./SomeEqual";
|
|
12
|
-
export * from "./SomeExtend";
|
|
13
|
-
export * from "./NotCharacters";
|
|
14
|
-
export * from "./NarrowlyContains";
|
|
15
|
-
export * from "./Returns";
|
|
16
|
-
export * from "./ReturnsTrue";
|
|
17
|
-
export * from "./ReturnsFalse";
|
|
18
|
-
export * from "./NotEqual";
|
|
19
|
-
export * from "./StartsWith";
|
|
20
|
-
export * from "./HasParameters";
|
|
21
|
-
export * from "./HasUnionType";
|
|
22
|
-
export * from "./HasSameValues";
|
|
23
|
-
export * from "./IsNegativeNumber";
|
|
24
|
-
export * from "./IsRef";
|
|
25
|
-
export * from "./IsValidKey";
|
|
26
|
-
export * from "./IsObjectLiteral";
|
|
27
|
-
export * from "./IsTuple";
|
|
28
|
-
export * from "./IsGreaterThan";
|
|
29
|
-
export * from "./IsDotPath";
|
|
30
|
-
export * from "./IsSingularNoun";
|
|
31
|
-
export * from "./IsValidDotPath";
|
|
32
|
-
export * from "./IsAllLowercase";
|
|
33
|
-
export * from "./IsAllCaps";
|
|
34
|
-
export * from "./IsChar";
|
|
35
|
-
export * from "./IsOptionalScalar";
|
|
36
|
-
export * from "./IsObject";
|
|
37
|
-
export * from "./Includes";
|
|
38
|
-
export * from "./IsLength";
|
|
39
|
-
export * from "./IsScalar";
|
|
40
|
-
export * from "./IsEmptyObject";
|
|
41
|
-
export * from "./IsLiteral";
|
|
42
|
-
export * from "./IsUndefined";
|
|
43
|
-
export * from "./IsWideType";
|
|
44
|
-
export * from "./IsBoolean";
|
|
45
|
-
export * from "./IsTrue";
|
|
46
|
-
export * from "./IsFalse";
|
|
47
|
-
export * from "./IsFalsy";
|
|
48
|
-
export * from "./IsMaybeTrue";
|
|
49
|
-
export * from "./IsStringLiteral";
|
|
50
|
-
export * from "./IsNumericLiteral";
|
|
51
|
-
export * from "./IsBooleanLiteral";
|
|
52
|
-
export * from "./IsEqual";
|
|
53
|
-
export * from "./IsUnion";
|
|
54
|
-
export * from "./IsArray";
|
|
55
|
-
export * from "./IsError";
|
|
56
|
-
export * from "./IsReadonlyArray";
|
|
57
|
-
export * from "./IsNull";
|
|
58
|
-
export * from "./IsSymbol";
|
|
59
|
-
export * from "./IsNumber";
|
|
60
|
-
export * from "./IsErrorCondition";
|
|
61
|
-
export * from "./IsNever";
|
|
62
|
-
export * from "./IsTruthy";
|
|
63
|
-
export * from "./IsString";
|
|
64
|
-
export * from "./IsEqual";
|
|
65
|
-
export * from "./IsNotEqual";
|
|
66
|
-
export * from "./IsFunction";
|
|
67
|
-
export * from "./IsFnWithParams";
|
|
68
|
-
export * from "./IsContainer";
|
|
69
|
-
export * from "./NotLength";
|
|
70
|
-
export * from "./IsIndexable";
|
|
71
|
-
export * from "./HasCharacters";
|
|
72
|
-
export * from "./IsIndexable";
|
|
73
|
-
export * from "./IsReadonlyObject";
|
|
74
|
-
export * from "./OfSameLength";
|
|
1
|
+
export * from "./AllExtend.js";
|
|
2
|
+
export * from "./AllLiteral.js";
|
|
3
|
+
export * from "./Contains.js";
|
|
4
|
+
export * from "./ContainsAll.js";
|
|
5
|
+
export * from "./DoesExtend.js";
|
|
6
|
+
export * from "./DoesNotExtend.js";
|
|
7
|
+
export * from "./ExtendsAll.js";
|
|
8
|
+
export * from "./ExtendsSome.js";
|
|
9
|
+
export * from "./ExtendsNone.js";
|
|
10
|
+
export * from "./EndsWith.js";
|
|
11
|
+
export * from "./SomeEqual.js";
|
|
12
|
+
export * from "./SomeExtend.js";
|
|
13
|
+
export * from "./NotCharacters.js";
|
|
14
|
+
export * from "./NarrowlyContains.js";
|
|
15
|
+
export * from "./Returns.js";
|
|
16
|
+
export * from "./ReturnsTrue.js";
|
|
17
|
+
export * from "./ReturnsFalse.js";
|
|
18
|
+
export * from "./NotEqual.js";
|
|
19
|
+
export * from "./StartsWith.js";
|
|
20
|
+
export * from "./HasParameters.js";
|
|
21
|
+
export * from "./HasUnionType.js";
|
|
22
|
+
export * from "./HasSameValues.js";
|
|
23
|
+
export * from "./IsNegativeNumber.js";
|
|
24
|
+
export * from "./IsRef.js";
|
|
25
|
+
export * from "./IsValidKey.js";
|
|
26
|
+
export * from "./IsObjectLiteral.js";
|
|
27
|
+
export * from "./IsTuple.js";
|
|
28
|
+
export * from "./IsGreaterThan.js";
|
|
29
|
+
export * from "./IsDotPath.js";
|
|
30
|
+
export * from "./IsSingularNoun.js";
|
|
31
|
+
export * from "./IsValidDotPath.js";
|
|
32
|
+
export * from "./IsAllLowercase.js";
|
|
33
|
+
export * from "./IsAllCaps.js";
|
|
34
|
+
export * from "./IsChar.js";
|
|
35
|
+
export * from "./IsOptionalScalar.js";
|
|
36
|
+
export * from "./IsObject.js";
|
|
37
|
+
export * from "./Includes.js";
|
|
38
|
+
export * from "./IsLength.js";
|
|
39
|
+
export * from "./IsScalar.js";
|
|
40
|
+
export * from "./IsEmptyObject.js";
|
|
41
|
+
export * from "./IsLiteral.js";
|
|
42
|
+
export * from "./IsUndefined.js";
|
|
43
|
+
export * from "./IsWideType.js";
|
|
44
|
+
export * from "./IsBoolean.js";
|
|
45
|
+
export * from "./IsTrue.js";
|
|
46
|
+
export * from "./IsFalse.js";
|
|
47
|
+
export * from "./IsFalsy.js";
|
|
48
|
+
export * from "./IsMaybeTrue.js";
|
|
49
|
+
export * from "./IsStringLiteral.js";
|
|
50
|
+
export * from "./IsNumericLiteral.js";
|
|
51
|
+
export * from "./IsBooleanLiteral.js";
|
|
52
|
+
export * from "./IsEqual.js";
|
|
53
|
+
export * from "./IsUnion.js";
|
|
54
|
+
export * from "./IsArray.js";
|
|
55
|
+
export * from "./IsError.js";
|
|
56
|
+
export * from "./IsReadonlyArray.js";
|
|
57
|
+
export * from "./IsNull.js";
|
|
58
|
+
export * from "./IsSymbol.js";
|
|
59
|
+
export * from "./IsNumber.js";
|
|
60
|
+
export * from "./IsErrorCondition.js";
|
|
61
|
+
export * from "./IsNever.js";
|
|
62
|
+
export * from "./IsTruthy.js";
|
|
63
|
+
export * from "./IsString.js";
|
|
64
|
+
export * from "./IsEqual.js";
|
|
65
|
+
export * from "./IsNotEqual.js";
|
|
66
|
+
export * from "./IsFunction.js";
|
|
67
|
+
export * from "./IsFnWithParams.js";
|
|
68
|
+
export * from "./IsContainer.js";
|
|
69
|
+
export * from "./NotLength.js";
|
|
70
|
+
export * from "./IsIndexable.js";
|
|
71
|
+
export * from "./HasCharacters.js";
|
|
72
|
+
export * from "./IsIndexable.js";
|
|
73
|
+
export * from "./IsReadonlyObject.js";
|
|
74
|
+
export * from "./OfSameLength.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./Constructor";
|
|
1
|
+
export * from "./Constructor.js";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./EmptyContainer";
|
|
2
|
-
export * from "./NonEmptyContainer";
|
|
3
|
-
export * from "./WithKey";
|
|
1
|
+
export * from "./EmptyContainer.js";
|
|
2
|
+
export * from "./NonEmptyContainer.js";
|
|
3
|
+
export * from "./WithKey.js";
|
|
@@ -3,46 +3,46 @@
|
|
|
3
3
|
// index last changed at: 8th Aug, 2022, 09:51 AM ( GMT-7 )
|
|
4
4
|
// hash-code: 55881f7d
|
|
5
5
|
// file exports
|
|
6
|
-
export * from "./AddKeyValue";
|
|
7
|
-
export * from "./DictChangeValue";
|
|
8
|
-
export * from "./Get";
|
|
9
|
-
export * from "./SimplifyObject";
|
|
10
|
-
export * from "./Keys";
|
|
11
|
-
export * from "./MaybeRef";
|
|
12
|
-
export * from "./FromMaybeRef";
|
|
13
|
-
export * from "./RequiredProps";
|
|
14
|
-
export * from "./OptionalProps";
|
|
15
|
-
export * from "./PrivateKeys";
|
|
16
|
-
export * from "./PublicKeys";
|
|
17
|
-
export * from "./StringKeys";
|
|
18
|
-
export * from "./NonStringKeys";
|
|
19
|
-
export * from "./KeysWithValue";
|
|
20
|
-
export * from "./KeysWithoutValue";
|
|
21
|
-
export * from "./KeysEqualValue";
|
|
22
|
-
export * from "./KeysNotEqualValue";
|
|
23
|
-
export * from "./OptionalKeys";
|
|
24
|
-
export * from "./RequiredKeys";
|
|
25
|
-
export * from "./MapTo";
|
|
26
|
-
export * from "./MakePropsMutable";
|
|
27
|
-
export * from "./MutableProps";
|
|
28
|
-
export * from "./NonNumericKeys";
|
|
29
|
-
export * from "./NonStringKeys";
|
|
30
|
-
export * from "./RequireProps";
|
|
31
|
-
export * from "./ReadonlyKeys";
|
|
32
|
-
export * from "./ReadonlyProps";
|
|
33
|
-
export * from "./ExplicitKeys";
|
|
34
|
-
export * from "./SameKeys";
|
|
35
|
-
export * from "./AddKeyValue";
|
|
36
|
-
export * from "./WithKeys";
|
|
37
|
-
export * from "./WithValue";
|
|
38
|
-
export * from "./SharedKeys";
|
|
39
|
-
export * from "./WithoutKeys";
|
|
40
|
-
export * from "./WithoutValue";
|
|
41
|
-
export * from "./WithNumericKeys";
|
|
42
|
-
export * from "./RemoveIndexKeys";
|
|
43
|
-
export * from "./WithStringKeys";
|
|
44
|
-
export * from "./ValidKey";
|
|
45
|
-
export * from "./UpsertKeyValue";
|
|
6
|
+
export * from "./AddKeyValue.js";
|
|
7
|
+
export * from "./DictChangeValue.js";
|
|
8
|
+
export * from "./Get.js";
|
|
9
|
+
export * from "./SimplifyObject.js";
|
|
10
|
+
export * from "./Keys.js";
|
|
11
|
+
export * from "./MaybeRef.js";
|
|
12
|
+
export * from "./FromMaybeRef.js";
|
|
13
|
+
export * from "./RequiredProps.js";
|
|
14
|
+
export * from "./OptionalProps.js";
|
|
15
|
+
export * from "./PrivateKeys.js";
|
|
16
|
+
export * from "./PublicKeys.js";
|
|
17
|
+
export * from "./StringKeys.js";
|
|
18
|
+
export * from "./NonStringKeys.js";
|
|
19
|
+
export * from "./KeysWithValue.js";
|
|
20
|
+
export * from "./KeysWithoutValue.js";
|
|
21
|
+
export * from "./KeysEqualValue.js";
|
|
22
|
+
export * from "./KeysNotEqualValue.js";
|
|
23
|
+
export * from "./OptionalKeys.js";
|
|
24
|
+
export * from "./RequiredKeys.js";
|
|
25
|
+
export * from "./MapTo.js";
|
|
26
|
+
export * from "./MakePropsMutable.js";
|
|
27
|
+
export * from "./MutableProps.js";
|
|
28
|
+
export * from "./NonNumericKeys.js";
|
|
29
|
+
export * from "./NonStringKeys.js";
|
|
30
|
+
export * from "./RequireProps.js";
|
|
31
|
+
export * from "./ReadonlyKeys.js";
|
|
32
|
+
export * from "./ReadonlyProps.js";
|
|
33
|
+
export * from "./ExplicitKeys.js";
|
|
34
|
+
export * from "./SameKeys.js";
|
|
35
|
+
export * from "./AddKeyValue.js";
|
|
36
|
+
export * from "./WithKeys.js";
|
|
37
|
+
export * from "./WithValue.js";
|
|
38
|
+
export * from "./SharedKeys.js";
|
|
39
|
+
export * from "./WithoutKeys.js";
|
|
40
|
+
export * from "./WithoutValue.js";
|
|
41
|
+
export * from "./WithNumericKeys.js";
|
|
42
|
+
export * from "./RemoveIndexKeys.js";
|
|
43
|
+
export * from "./WithStringKeys.js";
|
|
44
|
+
export * from "./ValidKey.js";
|
|
45
|
+
export * from "./UpsertKeyValue.js";
|
|
46
46
|
// #endregion auto-indexed files
|
|
47
47
|
// see https://github.com/inocan-group/do-devops/docs/autoindex.md
|
|
48
48
|
// for more info
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./AsError";
|
|
2
|
-
export * from "./ErrorCondition";
|
|
3
|
-
export * from "./ErrorConditionHandler";
|
|
4
|
-
export * from "./ReportError";
|
|
1
|
+
export * from "./AsError.js";
|
|
2
|
+
export * from "./ErrorCondition.js";
|
|
3
|
+
export * from "./ErrorConditionHandler.js";
|
|
4
|
+
export * from "./ReportError.js";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./Left";
|
|
2
|
-
export * from "./Right";
|
|
1
|
+
export * from "./Left.js";
|
|
2
|
+
export * from "./Right.js";
|
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
// index last changed at: 8th Aug, 2022, 09:51 AM ( GMT-7 )
|
|
4
4
|
// hash-code: 57dfa865
|
|
5
5
|
// file exports
|
|
6
|
-
export * from "./LogicFunction";
|
|
7
|
-
export * from "./TypeGuard";
|
|
8
|
-
export * from "./AsFnMeta";
|
|
9
|
-
export * from "./RemoveFnProps";
|
|
10
|
-
export * from "./ToFn";
|
|
11
|
-
export * from "./FnMeta";
|
|
12
|
-
export * from "./PromiseAll";
|
|
13
|
-
export * from "./FnProps";
|
|
6
|
+
export * from "./LogicFunction.js";
|
|
7
|
+
export * from "./TypeGuard.js";
|
|
8
|
+
export * from "./AsFnMeta.js";
|
|
9
|
+
export * from "./RemoveFnProps.js";
|
|
10
|
+
export * from "./ToFn.js";
|
|
11
|
+
export * from "./FnMeta.js";
|
|
12
|
+
export * from "./PromiseAll.js";
|
|
13
|
+
export * from "./FnProps.js";
|
|
14
14
|
// export * from "../numeric-literals/ValueCallback";
|
|
15
15
|
// #endregion auto-indexed files
|
|
16
16
|
// see https://github.com/inocan-group/do-devops/docs/autoindex.md
|
package/dist/types/index.js
CHANGED
|
@@ -4,20 +4,20 @@
|
|
|
4
4
|
// hash-code: fbd4603a
|
|
5
5
|
// file exports
|
|
6
6
|
// directory exports
|
|
7
|
-
export * from "./base-types/index";
|
|
8
|
-
export * from "./boolean-logic/index";
|
|
9
|
-
export * from "./classes/index";
|
|
10
|
-
export * from "./containers/index";
|
|
11
|
-
export * from "./dictionary/index";
|
|
12
|
-
export * from "./errors/index";
|
|
13
|
-
export * from "./functional/index";
|
|
14
|
-
export * from "./functions/index";
|
|
15
|
-
export * from "./kv/index";
|
|
16
|
-
export * from "./lists/index";
|
|
17
|
-
export * from "./literals/index";
|
|
18
|
-
export * from "./numeric-literals/index";
|
|
19
|
-
export * from "./runtime-types/index";
|
|
20
|
-
export * from "./sets/index";
|
|
21
|
-
export * from "./string-literals/index";
|
|
22
|
-
export * from "./tuples/index";
|
|
23
|
-
export * from "./type-conversion/index";
|
|
7
|
+
export * from "./base-types/index.js";
|
|
8
|
+
export * from "./boolean-logic/index.js";
|
|
9
|
+
export * from "./classes/index.js";
|
|
10
|
+
export * from "./containers/index.js";
|
|
11
|
+
export * from "./dictionary/index.js";
|
|
12
|
+
export * from "./errors/index.js";
|
|
13
|
+
export * from "./functional/index.js";
|
|
14
|
+
export * from "./functions/index.js";
|
|
15
|
+
export * from "./kv/index.js";
|
|
16
|
+
export * from "./lists/index.js";
|
|
17
|
+
export * from "./literals/index.js";
|
|
18
|
+
export * from "./numeric-literals/index.js";
|
|
19
|
+
export * from "./runtime-types/index.js";
|
|
20
|
+
export * from "./sets/index.js";
|
|
21
|
+
export * from "./string-literals/index.js";
|
|
22
|
+
export * from "./tuples/index.js";
|
|
23
|
+
export * from "./type-conversion/index.js";
|
package/dist/types/kv/index.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
// index last changed at: 8th Aug, 2022, 09:51 AM ( GMT-7 )
|
|
4
4
|
// hash-code: 744ff3bf
|
|
5
5
|
// file exports
|
|
6
|
-
export * from "./DictFromKv";
|
|
7
|
-
export * from "./KeyValue";
|
|
8
|
-
export * from "./KvFrom";
|
|
9
|
-
export * from "./KvTuple";
|
|
6
|
+
export * from "./DictFromKv.js";
|
|
7
|
+
export * from "./KeyValue.js";
|
|
8
|
+
export * from "./KvFrom.js";
|
|
9
|
+
export * from "./KvTuple.js";
|
|
10
10
|
// #endregion auto-indexed files
|
|
11
11
|
// see https://github.com/inocan-group/do-devops/docs/autoindex.md
|
|
12
12
|
// for more info
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * from "./RemoveEquals";
|
|
2
|
-
export * from "./RemoveErrors";
|
|
3
|
-
export * from "./RemoveExtends";
|
|
4
|
-
export * from "./RemoveStrings";
|
|
5
|
-
export * from "./RetainStrings";
|
|
6
|
-
export * from "./RemoveNever";
|
|
7
|
-
export * from "./RetainExtends";
|
|
8
|
-
export * from "./RetainEquals";
|
|
9
|
-
export * from "./RetainNotExtends";
|
|
10
|
-
export * from "./RemoveNotExtends";
|
|
1
|
+
export * from "./RemoveEquals.js";
|
|
2
|
+
export * from "./RemoveErrors.js";
|
|
3
|
+
export * from "./RemoveExtends.js";
|
|
4
|
+
export * from "./RemoveStrings.js";
|
|
5
|
+
export * from "./RetainStrings.js";
|
|
6
|
+
export * from "./RemoveNever.js";
|
|
7
|
+
export * from "./RetainExtends.js";
|
|
8
|
+
export * from "./RetainEquals.js";
|
|
9
|
+
export * from "./RetainNotExtends.js";
|
|
10
|
+
export * from "./RemoveNotExtends.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./2nd-order/index";
|
|
2
|
-
export * from "./ExtractorOp";
|
|
3
|
-
export * from "./RemoveFromList";
|
|
4
|
-
export * from "./RetainFromList";
|
|
1
|
+
export * from "./2nd-order/index.js";
|
|
2
|
+
export * from "./ExtractorOp.js";
|
|
3
|
+
export * from "./RemoveFromList.js";
|
|
4
|
+
export * from "./RetainFromList.js";
|