inferred-types 0.40.6 → 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.
Files changed (79) hide show
  1. package/dist/constants/Comma.js +1 -1
  2. package/dist/constants/Never.js +1 -1
  3. package/dist/constants/NoDefaultValue.js +1 -1
  4. package/dist/constants/NotDefined.js +1 -1
  5. package/dist/constants/TypeComparisons.js +1 -1
  6. package/dist/constants/index.js +22 -22
  7. package/dist/constants/tsconfig.tsbuildinfo +1 -1
  8. package/dist/inferred-types/index.js +3 -3
  9. package/dist/inferred-types/tsconfig.tsbuildinfo +1 -1
  10. package/dist/runtime/boolean-logic/ifChar.js +1 -1
  11. package/dist/runtime/boolean-logic/index.js +19 -19
  12. package/dist/runtime/combinators/index.js +3 -3
  13. package/dist/runtime/dictionary/get.js +1 -1
  14. package/dist/runtime/dictionary/index.js +13 -13
  15. package/dist/runtime/errors/index.js +1 -1
  16. package/dist/runtime/functional/index.js +2 -2
  17. package/dist/runtime/functions/index.js +1 -1
  18. package/dist/runtime/index.js +14 -14
  19. package/dist/runtime/initializers/index.js +8 -8
  20. package/dist/runtime/lists/createConverter.js +1 -1
  21. package/dist/runtime/lists/getEach.js +1 -1
  22. package/dist/runtime/lists/index.js +15 -15
  23. package/dist/runtime/lists/indexOf.js +1 -1
  24. package/dist/runtime/literals/ifLowercase.js +1 -1
  25. package/dist/runtime/literals/ifUppercase.js +1 -1
  26. package/dist/runtime/literals/index.js +30 -30
  27. package/dist/runtime/literals/pluralize.js +1 -1
  28. package/dist/runtime/literals/split.js +1 -1
  29. package/dist/runtime/runtime-types/createType.js +1 -1
  30. package/dist/runtime/runtime-types/describeType.js +1 -1
  31. package/dist/runtime/runtime-types/index.js +8 -8
  32. package/dist/runtime/runtime-types/typeTuples.js +1 -1
  33. package/dist/runtime/sets/index.js +1 -1
  34. package/dist/runtime/state/index.js +2 -2
  35. package/dist/runtime/type-conversion/index.js +9 -9
  36. package/dist/runtime/type-guards/higher-order/endsWith.js +1 -1
  37. package/dist/runtime/type-guards/higher-order/index.js +6 -6
  38. package/dist/runtime/type-guards/higher-order/isEqual.js +1 -1
  39. package/dist/runtime/type-guards/higher-order/isLength.js +1 -1
  40. package/dist/runtime/type-guards/higher-order/startsWith.js +1 -1
  41. package/dist/runtime/type-guards/index.js +33 -33
  42. package/dist/runtime/type-guards/isAlpha.js +1 -1
  43. package/dist/runtime/type-guards/isFalsy.js +1 -1
  44. package/dist/runtime/type-guards/isNumericString.js +1 -1
  45. package/dist/runtime/type-guards/isTruthy.js +1 -1
  46. package/dist/runtime/type-guards/isTypeToken.js +1 -1
  47. package/dist/runtime/type-guards/runtime-type-guards.js +1 -1
  48. package/dist/types/base-types/fns/index.js +3 -3
  49. package/dist/types/base-types/functional/index.js +1 -1
  50. package/dist/types/base-types/index.js +24 -24
  51. package/dist/types/boolean-logic/branching/index.js +66 -66
  52. package/dist/types/boolean-logic/combinators/index.js +3 -3
  53. package/dist/types/boolean-logic/index.js +5 -5
  54. package/dist/types/boolean-logic/narrowing/index.js +2 -2
  55. package/dist/types/boolean-logic/operators/index.js +74 -74
  56. package/dist/types/classes/index.js +1 -1
  57. package/dist/types/containers/index.js +3 -3
  58. package/dist/types/dictionary/index.js +40 -40
  59. package/dist/types/errors/index.js +4 -4
  60. package/dist/types/functional/index.js +2 -2
  61. package/dist/types/functions/index.js +8 -8
  62. package/dist/types/index.js +17 -17
  63. package/dist/types/kv/index.js +4 -4
  64. package/dist/types/lists/extractors/2nd-order/index.js +10 -10
  65. package/dist/types/lists/extractors/index.js +4 -4
  66. package/dist/types/lists/index.js +32 -32
  67. package/dist/types/literals/index.js +10 -10
  68. package/dist/types/numeric-literals/index.js +19 -19
  69. package/dist/types/runtime-types/index.js +10 -10
  70. package/dist/types/sets/index.js +11 -11
  71. package/dist/types/string-literals/casing/index.js +12 -12
  72. package/dist/types/string-literals/character-sets/brackets/index.js +3 -3
  73. package/dist/types/string-literals/character-sets/index.js +26 -26
  74. package/dist/types/string-literals/character-sets/quotation-marks/index.js +6 -6
  75. package/dist/types/string-literals/index.js +37 -37
  76. package/dist/types/string-literals/options/index.js +2 -2
  77. package/dist/types/tuples/index.js +7 -7
  78. package/dist/types/type-conversion/index.js +38 -38
  79. package/package.json +2 -1
@@ -1,4 +1,4 @@
1
- import { Never } from "../../constants";
1
+ import { Never } from "../../constants/index.js";
2
2
  const def_if = (v) => v;
3
3
  const def_else = () => Never;
4
4
  export function ifChar(ch, callback_if_match = def_if, callback_not_match = def_else) {
@@ -1,21 +1,21 @@
1
- export * from "./ifArray";
2
- export * from "./ifBoolean";
3
- export * from "./ifNumber";
4
- export * from "./ifString";
5
- export * from "./ifNotNull";
6
- export * from "./ifSameType";
7
- export * from "./ifFunction";
8
- export * from "./ifContainer";
9
- export * from "./ifHasKey";
10
- export * from "./ifLength";
11
- export * from "./ifScalar";
12
- export * from "./ifNull";
13
- export * from "./ifObject";
14
- export * from "./ifTrue";
15
- export * from "./ifFalse";
16
- export * from "./ifChar";
17
- export * from "./ifRef";
1
+ export * from "./ifArray.js";
2
+ export * from "./ifBoolean.js";
3
+ export * from "./ifNumber.js";
4
+ export * from "./ifString.js";
5
+ export * from "./ifNotNull.js";
6
+ export * from "./ifSameType.js";
7
+ export * from "./ifFunction.js";
8
+ export * from "./ifContainer.js";
9
+ export * from "./ifHasKey.js";
10
+ export * from "./ifLength.js";
11
+ export * from "./ifScalar.js";
12
+ export * from "./ifNull.js";
13
+ export * from "./ifObject.js";
14
+ export * from "./ifTrue.js";
15
+ export * from "./ifFalse.js";
16
+ export * from "./ifChar.js";
17
+ export * from "./ifRef.js";
18
18
  // export * from "./ifStartsWith";
19
- export * from "./ifUndefined";
20
- export * from "./ifArrayPartial";
19
+ export * from "./ifUndefined.js";
20
+ export * from "./ifArrayPartial.js";
21
21
  // export * from "./ifTypeOf";
@@ -1,3 +1,3 @@
1
- export * from "./and";
2
- export * from "./or";
3
- export * from "./filter";
1
+ export * from "./and.js";
2
+ export * from "./or.js";
3
+ export * from "./filter.js";
@@ -1,4 +1,4 @@
1
- import { NO_DEFAULT_VALUE, NOT_DEFINED } from "../../constants";
1
+ import { NO_DEFAULT_VALUE, NOT_DEFINED } from "../../constants/index.js";
2
2
  import { hasDefaultValue, isTruthy, isRef, hasIndexOf, isSpecificConstant, createErrorCondition, split, isContainer, } from "..";
3
3
  /** updates based on whether segment is a Ref or not */
4
4
  function updatedDotPath(value, dotpath, segment) {
@@ -3,20 +3,20 @@
3
3
  // index last changed at: 8th Aug, 2022, 09:51 AM ( GMT-7 )
4
4
  // hash-code: b0051c37
5
5
  // file exports
6
- export * from "./arrayToKeyLookup";
7
- export * from "./entries";
8
- export * from "./get";
9
- export * from "./keysOf";
6
+ export * from "./arrayToKeyLookup.js";
7
+ export * from "./entries.js";
8
+ export * from "./get.js";
9
+ export * from "./keysOf.js";
10
10
  // export * from "./mapTo";
11
- export * from "./mapValues";
12
- export * from "./omit";
13
- export * from "./retain";
14
- export * from "./sharedKeys";
15
- export * from "./strArrayToDict";
16
- export * from "./withKeys";
17
- export * from "./withoutKeys";
18
- export * from "./withValue";
19
- export * from "./withoutValue";
11
+ export * from "./mapValues.js";
12
+ export * from "./omit.js";
13
+ export * from "./retain.js";
14
+ export * from "./sharedKeys.js";
15
+ export * from "./strArrayToDict.js";
16
+ export * from "./withKeys.js";
17
+ export * from "./withoutKeys.js";
18
+ export * from "./withValue.js";
19
+ export * from "./withoutValue.js";
20
20
  // #endregion auto-indexed files
21
21
  // see https://github.com/inocan-group/do-devops/docs/autoindex.md
22
22
  // for more info
@@ -1 +1 @@
1
- export * from "./createErrorCondition";
1
+ export * from "./createErrorCondition.js";
@@ -1,2 +1,2 @@
1
- export * from "./left";
2
- export * from "./right";
1
+ export * from "./left.js";
2
+ export * from "./right.js";
@@ -1 +1 @@
1
- export * from "./fnMeta";
1
+ export * from "./fnMeta.js";
@@ -4,20 +4,20 @@
4
4
  // hash-code: 9dd9ac96
5
5
  // file exports
6
6
  // directory exports
7
- export * from "./boolean-logic/index";
8
- export * from "./combinators/index";
9
- export * from "./dictionary/index";
10
- export * from "./errors/index";
11
- export * from "./functional/index";
12
- export * from "./functions/index";
13
- export * from "./initializers/index";
14
- export * from "./lists/index";
15
- export * from "./literals/index";
16
- export * from "./runtime-types/index";
17
- export * from "./sets/index";
18
- export * from "./state/index";
19
- export * from "./type-conversion/index";
20
- export * from "./type-guards/index";
7
+ export * from "./boolean-logic/index.js";
8
+ export * from "./combinators/index.js";
9
+ export * from "./dictionary/index.js";
10
+ export * from "./errors/index.js";
11
+ export * from "./functional/index.js";
12
+ export * from "./functions/index.js";
13
+ export * from "./initializers/index.js";
14
+ export * from "./lists/index.js";
15
+ export * from "./literals/index.js";
16
+ export * from "./runtime-types/index.js";
17
+ export * from "./sets/index.js";
18
+ export * from "./state/index.js";
19
+ export * from "./type-conversion/index.js";
20
+ export * from "./type-guards/index.js";
21
21
  // #endregion auto-indexed files
22
22
  // see https://github.com/inocan-group/do-devops/docs/autoindex.md
23
23
  // for more info
@@ -1,8 +1,8 @@
1
- export * from "./addFnToProps";
2
- export * from "./addPropsToFn";
3
- export * from "./createTypeGuard";
4
- export * from "./createTypeTuple";
5
- export * from "./createValidator";
6
- export * from "./createFnWithProps";
7
- export * from "./defineObj";
8
- export * from "./defineTuple";
1
+ export * from "./addFnToProps.js";
2
+ export * from "./addPropsToFn.js";
3
+ export * from "./createTypeGuard.js";
4
+ export * from "./createTypeTuple.js";
5
+ export * from "./createValidator.js";
6
+ export * from "./createFnWithProps.js";
7
+ export * from "./defineObj.js";
8
+ export * from "./defineTuple.js";
@@ -1,5 +1,5 @@
1
1
  import { isTupleType, isObject, isNothing } from "..";
2
- import { Never } from "../../constants";
2
+ import { Never } from "../../constants/index.js";
3
3
  /**
4
4
  * **createConverter**(mapper)
5
5
  *
@@ -1,5 +1,5 @@
1
1
  import { get, isErrorCondition, isNull, isContainer } from "..";
2
- import { Never } from "../../constants";
2
+ import { Never } from "../../constants/index.js";
3
3
  /**
4
4
  * **getEach**(list, dotPath, [options])
5
5
  *
@@ -3,21 +3,21 @@
3
3
  // index last changed at: 8th Aug, 2022, 09:51 AM ( GMT-7 )
4
4
  // hash-code: bf4a6791
5
5
  // file exports
6
- export * from "./asArray";
7
- export * from "./getEach";
8
- export * from "./indexOf";
9
- export * from "./intersection";
10
- export * from "./unique";
11
- export * from "./logicalReturns";
12
- export * from "./find";
13
- export * from "./filter";
14
- export * from "./createConverter";
15
- export * from "./slice";
16
- export * from "./last";
17
- export * from "./reverse";
18
- export * from "./pop";
19
- export * from "./join";
20
- export * from "./shift";
6
+ export * from "./asArray.js";
7
+ export * from "./getEach.js";
8
+ export * from "./indexOf.js";
9
+ export * from "./intersection.js";
10
+ export * from "./unique.js";
11
+ export * from "./logicalReturns.js";
12
+ export * from "./find.js";
13
+ export * from "./filter.js";
14
+ export * from "./createConverter.js";
15
+ export * from "./slice.js";
16
+ export * from "./last.js";
17
+ export * from "./reverse.js";
18
+ export * from "./pop.js";
19
+ export * from "./join.js";
20
+ export * from "./shift.js";
21
21
  // #endregion auto-indexed files
22
22
  // see https://github.com/inocan-group/do-devops/docs/autoindex.md
23
23
  // for more info
@@ -1,5 +1,5 @@
1
1
  import { isArray, isNull, isNumber, isObject } from "..";
2
- import { Never } from "../../constants";
2
+ import { Never } from "../../constants/index.js";
3
3
  /**
4
4
  * **indexOf**(val, index)
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { LOWER_ALPHA_CHARS } from "../../constants";
2
+ import { LOWER_ALPHA_CHARS } from "../../constants/index.js";
3
3
  /**
4
4
  * **ifLowercaseChar**(ch)
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { LOWER_ALPHA_CHARS } from "../../constants";
2
+ import { LOWER_ALPHA_CHARS } from "../../constants/index.js";
3
3
  /**
4
4
  * **ifUppercaseChar**(ch, callbackForMatch, callbackForNoMatch)
5
5
  *
@@ -3,36 +3,36 @@
3
3
  // index last changed at: 8th Aug, 2022, 09:51 AM ( GMT-7 )
4
4
  // hash-code: 7a22bbbc
5
5
  // file exports
6
- export * from "./box";
7
- export * from "./identity";
8
- export * from "./literal";
9
- export * from "./stripTrailing";
10
- export * from "./stripLeading";
11
- export * from "./ensureTrailing";
12
- export * from "./ensureLeading";
13
- export * from "./ifUppercase";
14
- export * from "./pathJoin";
15
- export * from "./narrow";
16
- export * from "./split";
17
- export * from "./tuple";
18
- export * from "./capitalize";
19
- export * from "./uncapitalize";
20
- export * from "./uppercase";
21
- export * from "./lowercase";
22
- export * from "./widen";
23
- export * from "./toCamelCase";
24
- export * from "./toKebabCase";
25
- export * from "./ifLowercase";
26
- export * from "./toSnakeCase";
27
- export * from "./toString";
28
- export * from "./pluralize";
29
- export * from "./retainAfter";
30
- export * from "./surround";
31
- export * from "./stripAfter";
32
- export * from "./trim";
33
- export * from "./toPascalCase";
34
- export * from "./toUppercase";
35
- export * from "./toNumericArray";
6
+ export * from "./box.js";
7
+ export * from "./identity.js";
8
+ export * from "./literal.js";
9
+ export * from "./stripTrailing.js";
10
+ export * from "./stripLeading.js";
11
+ export * from "./ensureTrailing.js";
12
+ export * from "./ensureLeading.js";
13
+ export * from "./ifUppercase.js";
14
+ export * from "./pathJoin.js";
15
+ export * from "./narrow.js";
16
+ export * from "./split.js";
17
+ export * from "./tuple.js";
18
+ export * from "./capitalize.js";
19
+ export * from "./uncapitalize.js";
20
+ export * from "./uppercase.js";
21
+ export * from "./lowercase.js";
22
+ export * from "./widen.js";
23
+ export * from "./toCamelCase.js";
24
+ export * from "./toKebabCase.js";
25
+ export * from "./ifLowercase.js";
26
+ export * from "./toSnakeCase.js";
27
+ export * from "./toString.js";
28
+ export * from "./pluralize.js";
29
+ export * from "./retainAfter.js";
30
+ export * from "./surround.js";
31
+ export * from "./stripAfter.js";
32
+ export * from "./trim.js";
33
+ export * from "./toPascalCase.js";
34
+ export * from "./toUppercase.js";
35
+ export * from "./toNumericArray.js";
36
36
  // #endregion auto-indexed files
37
37
  // see https://github.com/inocan-group/do-devops/docs/autoindex.md
38
38
  // for more info
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { ALPHA_CHARS, CONSONANTS, PLURAL_EXCEPTIONS, SINGULAR_NOUN_ENDINGS } from "../../constants";
2
+ import { ALPHA_CHARS, CONSONANTS, PLURAL_EXCEPTIONS, SINGULAR_NOUN_ENDINGS } from "../../constants/index.js";
3
3
  import { split, stripTrailing } from "..";
4
4
  const isException = (word) => Object.keys(PLURAL_EXCEPTIONS).includes(word);
5
5
  const END_IN = [
@@ -1,4 +1,4 @@
1
- import { errorCondition } from "../../types";
1
+ import { errorCondition } from "../../types/index.js";
2
2
  import { isNumber, isString } from "..";
3
3
  /**
4
4
  * **split**(str, sep)
@@ -1,4 +1,4 @@
1
- import { LITERAL_TYPE_KINDS, NO_DEFAULT_VALUE, } from "../../constants";
1
+ import { LITERAL_TYPE_KINDS, NO_DEFAULT_VALUE, } from "../../constants/index.js";
2
2
  import { keysOf, box, isTypeDefn, createTypeGuard, createValidator, determineIdentity, determineType } from "..";
3
3
  /**
4
4
  * **TypeApi**
@@ -1,4 +1,4 @@
1
- import { isArray, isBoolean, isFunction, isNull, isNumber, isObject, isString, isSymbol, isTypeToken, isUndefined } from "../type-guards";
1
+ import { isArray, isBoolean, isFunction, isNull, isNumber, isObject, isString, isSymbol, isTypeToken, isUndefined } from "../type-guards/index.js";
2
2
  const tokenDesc = (token) => {
3
3
  // TODO: implement
4
4
  return token;
@@ -1,9 +1,9 @@
1
- export * from "./createType";
2
- export * from "./determineIdentity";
3
- export * from "./determineType";
4
- export * from "./describeType";
5
- export * from "./extractTypeToken";
6
- export * from "./kind";
7
- export * from "./extractTypeToken";
1
+ export * from "./createType.js";
2
+ export * from "./determineIdentity.js";
3
+ export * from "./determineType.js";
4
+ export * from "./describeType.js";
5
+ export * from "./extractTypeToken.js";
6
+ export * from "./kind.js";
7
+ export * from "./extractTypeToken.js";
8
8
  // export * from "./typeTuples";
9
- export * from "./valueTypes";
9
+ export * from "./valueTypes.js";
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { ALPHA_CHARS } from "../../constants";
2
+ import { ALPHA_CHARS } from "../../constants/index.js";
3
3
  import { createTypeTuple, kind } from "..";
4
4
  const digit = createTypeTuple(kind.explicitType("Digit"), (val) => {
5
5
  return typeof val === "string" && ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"].includes(val);
@@ -1 +1 @@
1
- export * from "./uniqueKeys";
1
+ export * from "./uniqueKeys.js";
@@ -3,8 +3,8 @@
3
3
  // index last changed at: 8th Aug, 2022, 09:51 AM ( GMT-7 )
4
4
  // hash-code: 397c607b
5
5
  // file exports
6
- export * from "./Configurator";
7
- export * from "./FluentConfigurator";
6
+ export * from "./Configurator.js";
7
+ export * from "./FluentConfigurator.js";
8
8
  // #endregion auto-indexed files
9
9
  // see https://github.com/inocan-group/do-devops/docs/autoindex.md
10
10
  // for more info
@@ -1,9 +1,9 @@
1
- export * from "./mergeObjects";
2
- export * from "./optional";
3
- export * from "./mergeScalars";
4
- export * from "./mergeTuples";
5
- export * from "./unionize";
6
- export * from "./intersect";
7
- export * from "./never";
8
- export * from "./union";
9
- export * from "./toNumber";
1
+ export * from "./mergeObjects.js";
2
+ export * from "./optional.js";
3
+ export * from "./mergeScalars.js";
4
+ export * from "./mergeTuples.js";
5
+ export * from "./unionize.js";
6
+ export * from "./intersect.js";
7
+ export * from "./never.js";
8
+ export * from "./union.js";
9
+ export * from "./toNumber.js";
@@ -1,4 +1,4 @@
1
- import { ifNumber, ifString } from "../..";
1
+ import { ifNumber, ifString } from "../../index.js";
2
2
  /**
3
3
  * **endsWith**(endingIn) => (val)
4
4
  *
@@ -1,6 +1,6 @@
1
- export * from "./endsWith";
2
- export * from "./startsWith";
3
- export * from "./isEqual";
4
- export * from "./isLength";
5
- export * from "./isTypeOf";
6
- export * from "./isSameTypeOf";
1
+ export * from "./endsWith.js";
2
+ export * from "./startsWith.js";
3
+ export * from "./isEqual.js";
4
+ export * from "./isLength.js";
5
+ export * from "./isTypeOf.js";
6
+ export * from "./isSameTypeOf.js";
@@ -1,4 +1,4 @@
1
- import { isSameTypeOf } from "../..";
1
+ import { isSameTypeOf } from "../../index.js";
2
2
  /**
3
3
  * **isEqual**(compareTo)(value)
4
4
  *
@@ -1,4 +1,4 @@
1
- import { keysOf, isArray, isObject, isString, isEqual } from "../..";
1
+ import { keysOf, isArray, isObject, isString, isEqual } from "../../index.js";
2
2
  /**
3
3
  * **ifLength**(len) => (value) => boolean
4
4
  *
@@ -1,4 +1,4 @@
1
- import { isNumber, isString } from "../..";
1
+ import { isNumber, isString } from "../../index.js";
2
2
  /**
3
3
  * **startsWith**(startingWith) => (val)
4
4
  *
@@ -1,33 +1,33 @@
1
- export * from "./isDefined";
2
- export * from "./isFalsy";
3
- export * from "./isNull";
4
- export * from "./isNotNull";
5
- export * from "./isTruthy";
6
- export * from "./isTypeTuple";
7
- export * from "./isUndefined";
8
- export * from "./isBoolean";
9
- export * from "./isString";
10
- export * from "./isIndexable";
11
- export * from "./isObject";
12
- export * from "./isTrue";
13
- export * from "./isArray";
14
- export * from "./isConstant";
15
- export * from "./isContainer";
16
- export * from "./isSpecificConstant";
17
- export * from "./isReadonlyArray";
18
- export * from "./hasIndexOf";
19
- export * from "./isRef";
20
- export * from "./isFalse";
21
- export * from "./hasDefaultValue";
22
- export * from "./isNumericString";
23
- export * from "./isFnWithParams";
24
- export * from "./isFunction";
25
- export * from "./isNumber";
26
- export * from "./isNothing";
27
- export * from "./isScalar";
28
- export * from "./isTypeToken";
29
- export * from "./isErrorCondition";
30
- export * from "./runtime-type-guards";
31
- export * from "./isSymbol";
32
- export * from "./isSameType";
33
- export * from "./higher-order/index";
1
+ export * from "./isDefined.js";
2
+ export * from "./isFalsy.js";
3
+ export * from "./isNull.js";
4
+ export * from "./isNotNull.js";
5
+ export * from "./isTruthy.js";
6
+ export * from "./isTypeTuple.js";
7
+ export * from "./isUndefined.js";
8
+ export * from "./isBoolean.js";
9
+ export * from "./isString.js";
10
+ export * from "./isIndexable.js";
11
+ export * from "./isObject.js";
12
+ export * from "./isTrue.js";
13
+ export * from "./isArray.js";
14
+ export * from "./isConstant.js";
15
+ export * from "./isContainer.js";
16
+ export * from "./isSpecificConstant.js";
17
+ export * from "./isReadonlyArray.js";
18
+ export * from "./hasIndexOf.js";
19
+ export * from "./isRef.js";
20
+ export * from "./isFalse.js";
21
+ export * from "./hasDefaultValue.js";
22
+ export * from "./isNumericString.js";
23
+ export * from "./isFnWithParams.js";
24
+ export * from "./isFunction.js";
25
+ export * from "./isNumber.js";
26
+ export * from "./isNothing.js";
27
+ export * from "./isScalar.js";
28
+ export * from "./isTypeToken.js";
29
+ export * from "./isErrorCondition.js";
30
+ export * from "./runtime-type-guards.js";
31
+ export * from "./isSymbol.js";
32
+ export * from "./isSameType.js";
33
+ export * from "./higher-order/index.js";
@@ -1,4 +1,4 @@
1
- import { ALPHA_CHARS } from "../../constants";
1
+ import { ALPHA_CHARS } from "../../constants/index.js";
2
2
  import { isString, split } from "..";
3
3
  /**
4
4
  * **isAlpha**(value)
@@ -1,4 +1,4 @@
1
- import { FALSY_VALUES } from "../../constants";
1
+ import { FALSY_VALUES } from "../../constants/index.js";
2
2
  /**
3
3
  * **isFalsy**()
4
4
  *
@@ -1,4 +1,4 @@
1
- import { NUMERIC_CHAR } from "../../constants";
1
+ import { NUMERIC_CHAR } from "../../constants/index.js";
2
2
  import { split } from "..";
3
3
  /**
4
4
  * **isNumericString**(value)
@@ -1,4 +1,4 @@
1
- import { FALSY_VALUES } from "../../constants";
1
+ import { FALSY_VALUES } from "../../constants/index.js";
2
2
  /**
3
3
  * **isTruthy**
4
4
  *
@@ -1,5 +1,5 @@
1
1
  import { endsWith, isString, startsWith, stripLeading, stripTrailing } from "..";
2
- import { TYPE_TOKEN_ALL } from "../../constants";
2
+ import { TYPE_TOKEN_ALL } from "../../constants/index.js";
3
3
  const validTokens = Array.from(TYPE_TOKEN_ALL);
4
4
  /**
5
5
  * **isTypeToken**(val)
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { FALSY_TYPE_KINDS, LITERAL_TYPE_KINDS, WIDE_TYPE_KINDS, } from "../../constants";
2
+ import { FALSY_TYPE_KINDS, LITERAL_TYPE_KINDS, WIDE_TYPE_KINDS, } from "../../constants/index.js";
3
3
  /**
4
4
  * **isTypeDefn**()
5
5
  *
@@ -1,3 +1,3 @@
1
- export * from "./FnWithDict";
2
- export * from "./NarrowingFn";
3
- export * from "./RegularFn";
1
+ export * from "./FnWithDict.js";
2
+ export * from "./NarrowingFn.js";
3
+ export * from "./RegularFn.js";
@@ -1 +1 @@
1
- export * from "./LeftRight";
1
+ export * from "./LeftRight.js";