@hkdigital/lib-core 0.4.12 → 0.4.13

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 (133) hide show
  1. package/README.md +4 -1
  2. package/dist/auth/errors.d.ts +1 -1
  3. package/dist/auth/errors.js +1 -1
  4. package/dist/auth/jwt/constants.d.ts +6 -0
  5. package/dist/auth/jwt/constants.js +13 -0
  6. package/dist/auth/jwt/core.d.ts +38 -0
  7. package/dist/auth/jwt/core.js +114 -0
  8. package/dist/auth/jwt/errors.d.ts +39 -0
  9. package/dist/auth/jwt/errors.js +74 -0
  10. package/dist/auth/jwt/generators.d.ts +29 -0
  11. package/dist/auth/jwt/generators.js +53 -0
  12. package/dist/auth/jwt/typedef.d.ts +159 -0
  13. package/dist/auth/jwt/typedef.js +72 -0
  14. package/dist/auth/jwt/util.d.ts +6 -0
  15. package/dist/auth/jwt/util.js +43 -0
  16. package/dist/auth/jwt.d.ts +4 -0
  17. package/dist/auth/jwt.js +12 -0
  18. package/dist/generic/data/classes/IterableTree.js +1 -1
  19. package/dist/generic/data/classes/Selector.js +1 -1
  20. package/dist/generic/promises/classes/HkPromise.js +1 -1
  21. package/dist/generic/streaming/classes/ServerEventsStore.js +1 -1
  22. package/dist/generic/typedef.d.ts +2 -0
  23. package/dist/generic/typedef.js +2 -0
  24. package/dist/logging/internal/adapters/console.js +3 -3
  25. package/dist/logging/internal/adapters/pino.js +17 -3
  26. package/dist/logging/internal/adapters/pino.js__ +260 -0
  27. package/dist/logging/internal/test-errors.js +3 -2
  28. package/dist/network/http/errors.js +10 -4
  29. package/dist/network/http/headers.js +1 -1
  30. package/dist/network/http/http-request.js +1 -1
  31. package/dist/network/http/json-request.js +1 -1
  32. package/dist/network/http/response.js +1 -1
  33. package/dist/network/loaders/audio/AudioScene.svelte.js +1 -1
  34. package/dist/network/loaders/image/ImageScene.svelte.js +1 -1
  35. package/dist/network/loaders/image/utils/index.js +1 -1
  36. package/dist/network/states/NetworkLoader.svelte.js +1 -1
  37. package/dist/network/typedef.d.ts +2 -0
  38. package/dist/network/typedef.js +3 -1
  39. package/dist/services/service-base/ServiceBase.js +1 -3
  40. package/dist/services/typedef.d.ts +2 -0
  41. package/dist/services/typedef.js +2 -0
  42. package/dist/state/typedef.d.ts +3 -0
  43. package/dist/state/typedef.js +3 -0
  44. package/dist/ui/components/drag-drop/drag-state.svelte.d.ts +3 -3
  45. package/dist/ui/components/hk-app-layout/HkAppLayout.state.svelte.d.ts +3 -3
  46. package/dist/ui/components/presenter/util.js +1 -1
  47. package/dist/ui/components/tab-bar/HkTabBar.state.svelte.d.ts +3 -3
  48. package/dist/ui/components/tab-bar/HkTabBarSelector.state.svelte.d.ts +3 -3
  49. package/dist/util/array/index.d.ts +0 -4
  50. package/dist/util/array/index.js +1 -5
  51. package/dist/util/array.d.ts +1 -0
  52. package/dist/util/array.js +9 -0
  53. package/dist/util/bases/base64.d.ts +8 -0
  54. package/dist/util/bases/base64.js +23 -0
  55. package/dist/util/bases/index.d.ts +0 -1
  56. package/dist/util/bases/index.js +0 -1
  57. package/dist/util/bases.d.ts +2 -0
  58. package/dist/util/bases.js +10 -0
  59. package/dist/util/compare.d.ts +1 -0
  60. package/dist/util/compare.js +9 -0
  61. package/dist/util/css/index.d.ts +0 -1
  62. package/dist/util/css/index.js +0 -1
  63. package/dist/util/css.d.ts +1 -0
  64. package/dist/util/css.js +8 -0
  65. package/dist/util/env.d.ts +1 -0
  66. package/dist/util/env.js +8 -0
  67. package/dist/util/exceptions.d.ts +1 -0
  68. package/dist/util/exceptions.js +8 -0
  69. package/dist/util/expect/arrays.js +2 -0
  70. package/dist/util/expect/compounds.d.ts +20 -0
  71. package/dist/util/expect/compounds.js +48 -0
  72. package/dist/util/expect/objects.d.ts +28 -0
  73. package/dist/util/expect/objects.js +70 -0
  74. package/dist/util/expect/primitives.d.ts +31 -1
  75. package/dist/util/expect/primitives.js +56 -0
  76. package/dist/util/expect/values.d.ts +26 -0
  77. package/dist/util/expect/values.js +48 -0
  78. package/dist/util/expect.d.ts +6 -0
  79. package/dist/util/expect.js +31 -0
  80. package/dist/util/function/index.js +1 -1
  81. package/dist/util/function.d.ts +1 -0
  82. package/dist/util/function.js +8 -0
  83. package/dist/util/geometry.d.ts +1 -0
  84. package/dist/util/geometry.js +9 -0
  85. package/dist/util/is.d.ts +1 -0
  86. package/dist/util/is.js +8 -0
  87. package/dist/util/iterate/index.js +1 -1
  88. package/dist/util/iterate.d.ts +1 -0
  89. package/dist/util/iterate.js +8 -0
  90. package/dist/util/object/index.js +2 -2
  91. package/dist/util/object.d.ts +1 -0
  92. package/dist/util/object.js +8 -0
  93. package/dist/util/random/bytes.d.ts +28 -0
  94. package/dist/util/random/bytes.js +72 -0
  95. package/dist/util/random.d.ts +1 -0
  96. package/dist/util/random.js +9 -0
  97. package/dist/util/singleton/index.js +1 -1
  98. package/dist/util/singleton.d.ts +1 -0
  99. package/dist/util/singleton.js +8 -0
  100. package/dist/util/ssr.d.ts +1 -0
  101. package/dist/util/ssr.js +8 -0
  102. package/dist/util/string/convert.js +1 -1
  103. package/dist/util/string/index.d.ts +0 -5
  104. package/dist/util/string/index.js +0 -5
  105. package/dist/util/string/interpolate.js +1 -1
  106. package/dist/util/string.d.ts +5 -0
  107. package/dist/util/string.js +12 -0
  108. package/dist/util/svelte/index.d.ts +0 -3
  109. package/dist/util/svelte/index.js +0 -4
  110. package/dist/util/svelte.d.ts +3 -0
  111. package/dist/util/svelte.js +11 -0
  112. package/dist/util/sveltekit/index.d.ts +0 -1
  113. package/dist/util/sveltekit/index.js +0 -1
  114. package/dist/util/sveltekit/route-folders/index.js +1 -1
  115. package/dist/util/sveltekit.d.ts +1 -0
  116. package/dist/util/sveltekit.js +8 -0
  117. package/dist/util/time/index.d.ts +7 -0
  118. package/dist/util/time/index.js +12 -1
  119. package/dist/util/time.d.ts +1 -0
  120. package/dist/util/time.js +1 -0
  121. package/dist/util/unique.d.ts +1 -0
  122. package/dist/util/unique.js +8 -0
  123. package/dist/valibot/{index.d.ts → valibot.d.ts} +1 -2
  124. package/dist/valibot/{index.js → valibot.js} +1 -6
  125. package/package.json +3 -1
  126. package/dist/auth/errors/jwt.d.ts +0 -8
  127. package/dist/auth/errors/jwt.js +0 -5
  128. package/dist/util/expect/index.d.ts +0 -103
  129. package/dist/util/expect/index.js +0 -259
  130. package/dist/util/index.d.ts +0 -10
  131. /package/dist/util/{geo → geometry}/index.d.ts +0 -0
  132. /package/dist/util/{geo → geometry}/index.js +0 -0
  133. /package/dist/util/{index.js → index.js__} +0 -0
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Array utilities main export
3
+ *
4
+ * @description
5
+ * This module provides utilities for array manipulation, conversion,
6
+ * and processing operations.
7
+ */
8
+
9
+ export * from './array/index.js';
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Decode a base64 encoded string into a Uint8Array
3
+ *
4
+ * @param {string} str64 - Base64 encoded string
5
+ *
6
+ * @returns {Uint8Array} byte array that contains the decoded contents
7
+ */
8
+ export function base64ToUint8Array(str64: string): Uint8Array;
@@ -0,0 +1,23 @@
1
+ /**
2
+ * base64.js
3
+ *
4
+ * @description
5
+ * This file contains utilities for working with base64 encoding/decoding
6
+ */
7
+
8
+ import * as expect from '../expect.js';
9
+
10
+ /**
11
+ * Decode a base64 encoded string into a Uint8Array
12
+ *
13
+ * @param {string} str64 - Base64 encoded string
14
+ *
15
+ * @returns {Uint8Array} byte array that contains the decoded contents
16
+ */
17
+ export function base64ToUint8Array( str64 )
18
+ {
19
+ expect.string( str64 );
20
+
21
+ const binaryString = atob(str64);
22
+ return Uint8Array.from(binaryString, char => char.charCodeAt(0));
23
+ }
@@ -1 +0,0 @@
1
- export * from "./base58.js";
@@ -1 +0,0 @@
1
- export * from './base58.js';
@@ -0,0 +1,2 @@
1
+ export * from "./bases/base58.js";
2
+ export * from "./bases/base64.js";
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Bases utilities main export
3
+ *
4
+ * @description
5
+ * This module provides a clean API for base encoding/decoding operations
6
+ * including base58 and base64 utilities.
7
+ */
8
+
9
+ export * from './bases/base58.js';
10
+ export * from './bases/base64.js';
@@ -0,0 +1 @@
1
+ export * from "./compare/index.js";
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Compare utilities main export
3
+ *
4
+ * @description
5
+ * This module provides comparison functions for sorting, equality checking,
6
+ * and value comparison operations.
7
+ */
8
+
9
+ export * from './compare/index.js';
@@ -1 +0,0 @@
1
- export * from "./css-vars.js";
@@ -1 +0,0 @@
1
- export * from './css-vars.js';
@@ -0,0 +1 @@
1
+ export * from "./css/css-vars.js";
@@ -0,0 +1,8 @@
1
+ /**
2
+ * CSS utilities main export
3
+ *
4
+ * @description
5
+ * This module provides CSS-related utilities including CSS variable management.
6
+ */
7
+
8
+ export * from './css/css-vars.js';
@@ -0,0 +1 @@
1
+ export * from "./env/index.js";
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Environment utilities main export
3
+ *
4
+ * @description
5
+ * This module provides environment detection utilities.
6
+ */
7
+
8
+ export * from './env/index.js';
@@ -0,0 +1 @@
1
+ export * from "./exceptions/index.js";
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Exception utilities main export
3
+ *
4
+ * @description
5
+ * This module provides exception handling utilities including error rethrowing.
6
+ */
7
+
8
+ export * from './exceptions/index.js';
@@ -53,3 +53,5 @@ export function expect_arrayLike(value) {
53
53
  }
54
54
 
55
55
  export { expect_arrayLike as arrayLike };
56
+
57
+ // arrayOrSet moved to compounds.js
@@ -0,0 +1,20 @@
1
+ /** Compound validators - combinations and unions of basic validators */
2
+ /**
3
+ * Throws a validation error if value is not iterable
4
+ *
5
+ * @param {any} value
6
+ */
7
+ export function expect_iterable(value: any): void;
8
+ /**
9
+ * Throws a validation error if value is not a store (has no subscribe method)
10
+ *
11
+ * @param {any} value
12
+ */
13
+ export function expect_store(value: any): void;
14
+ /**
15
+ * Throws a validation error if value is not an array or Set
16
+ *
17
+ * @param {any} value
18
+ */
19
+ export function expect_arrayOrSet(value: any): void;
20
+ export { expect_iterable as iterable, expect_store as store, expect_arrayOrSet as arrayOrSet };
@@ -0,0 +1,48 @@
1
+ import * as v from 'valibot';
2
+ import * as is from '../is/index.js';
3
+
4
+ /** Compound validators - combinations and unions of basic validators */
5
+
6
+ /**
7
+ * Throws a validation error if value is not iterable
8
+ *
9
+ * @param {any} value
10
+ */
11
+ export function expect_iterable(value) {
12
+ const schema = v.pipe(v.looseObject({ [Symbol.iterator]: v.function() }));
13
+
14
+ v.parse(schema, value);
15
+ }
16
+
17
+ export { expect_iterable as iterable };
18
+
19
+ /**
20
+ * Throws a validation error if value is not a store (has no subscribe method)
21
+ *
22
+ * @param {any} value
23
+ */
24
+ export function expect_store(value) {
25
+ v.parse(
26
+ v.custom((value) => {
27
+ if (!is.object(value) || typeof value?.subscribe !== 'function') {
28
+ return false;
29
+ }
30
+
31
+ return true;
32
+ }),
33
+ value
34
+ );
35
+ }
36
+
37
+ export { expect_store as store };
38
+
39
+ /**
40
+ * Throws a validation error if value is not an array or Set
41
+ *
42
+ * @param {any} value
43
+ */
44
+ export function expect_arrayOrSet(value) {
45
+ v.parse(v.union([v.instance(Array), v.instance(Set)]), value);
46
+ }
47
+
48
+ export { expect_arrayOrSet as arrayOrSet };
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Throws a validation error if value is not an object or the value
3
+ * is an array
4
+ *
5
+ * @param {any} value
6
+ */
7
+ export function expect_objectNoArray(value: any): void;
8
+ /**
9
+ * Throws a validation error if value is not an object or the value
10
+ * is a function
11
+ *
12
+ * @param {any} value
13
+ */
14
+ export function expect_objectNoFunction(value: any): void;
15
+ /**
16
+ * Throws a validation error if value is not an object or null
17
+ *
18
+ * @param {any} value
19
+ */
20
+ export function expect_objectOrNull(value: any): void;
21
+ /** Object-related validators */
22
+ /**
23
+ * Throws a validation error if value is not an object
24
+ *
25
+ * @param {any} value
26
+ */
27
+ declare function expect_object(value: any): void;
28
+ export { expect_object as object, expect_objectNoArray as objectNoArray, expect_objectNoFunction as objectNoFunction, expect_objectOrNull as objectOrNull };
@@ -0,0 +1,70 @@
1
+ import * as v from 'valibot';
2
+ import * as is from '../is/index.js';
3
+
4
+ /** Internals */
5
+
6
+ const ObjectSchema = v.custom(is.object, `Invalid type: Expected object`);
7
+
8
+ /** Object-related validators */
9
+
10
+ /**
11
+ * Throws a validation error if value is not an object
12
+ *
13
+ * @param {any} value
14
+ */
15
+ function expect_object(value) {
16
+ v.parse(ObjectSchema, value);
17
+ }
18
+
19
+ export { expect_object as object };
20
+
21
+ /**
22
+ * Throws a validation error if value is not an object or the value
23
+ * is an array
24
+ *
25
+ * @param {any} value
26
+ */
27
+ export function expect_objectNoArray(value) {
28
+ v.parse(
29
+ v.custom((value) => {
30
+ if (!is.object(value) || value instanceof Array) {
31
+ return false;
32
+ }
33
+
34
+ return true;
35
+ }),
36
+ value
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Throws a validation error if value is not an object or the value
42
+ * is a function
43
+ *
44
+ * @param {any} value
45
+ */
46
+ export function expect_objectNoFunction(value) {
47
+ v.parse(
48
+ v.custom((value) => {
49
+ if (!is.object(value) || typeof value === 'function') {
50
+ return false;
51
+ }
52
+
53
+ return true;
54
+ }),
55
+ value
56
+ );
57
+ }
58
+
59
+ /**
60
+ * Throws a validation error if value is not an object or null
61
+ *
62
+ * @param {any} value
63
+ */
64
+ export function expect_objectOrNull(value) {
65
+ v.parse(v.union([v.literal(null), v.looseObject({})]), value);
66
+ }
67
+
68
+ export { expect_objectNoArray as objectNoArray };
69
+ export { expect_objectNoFunction as objectNoFunction };
70
+ export { expect_objectOrNull as objectOrNull };
@@ -28,4 +28,34 @@ export function expect_symbol(value: any): void;
28
28
  * @param {any} value
29
29
  */
30
30
  export function expect_defined(value: any): void;
31
- export { expect_string as string, expect_boolean as boolean, expect_number as number, expect_symbol as symbol, expect_defined as defined };
31
+ /**
32
+ * Throws a validation error if value is not a function
33
+ *
34
+ * @param {any} value
35
+ */
36
+ export function expect_function(value: any): void;
37
+ /**
38
+ * Throws a validation error if value is not a Promise
39
+ *
40
+ * @param {any} value
41
+ */
42
+ export function expect_promise(value: any): void;
43
+ /**
44
+ * Throws a validation error if value is not a Map
45
+ *
46
+ * @param {any} value
47
+ */
48
+ export function expect_map(value: any): void;
49
+ /**
50
+ * Throws a validation error if value is not a Set
51
+ *
52
+ * @param {any} value
53
+ */
54
+ export function expect_set(value: any): void;
55
+ /**
56
+ * Throws a validation error if value is not an Error instance
57
+ *
58
+ * @param {any} value
59
+ */
60
+ export function expect_error(value: any): void;
61
+ export { expect_string as string, expect_boolean as boolean, expect_number as number, expect_symbol as symbol, expect_defined as defined, expect_function as function, _function as function, expect_function as class, _class as class, expect_promise as promise, expect_map as map, expect_set as set, expect_error as error };
@@ -63,3 +63,59 @@ export function expect_defined(value) {
63
63
  }
64
64
 
65
65
  export { expect_defined as defined };
66
+
67
+ /**
68
+ * Throws a validation error if value is not a function
69
+ *
70
+ * @param {any} value
71
+ */
72
+ export function expect_function(value) {
73
+ v.parse(v.function(), value);
74
+ }
75
+
76
+ export { expect_function as function };
77
+ export { expect_function as class };
78
+
79
+ /**
80
+ * Throws a validation error if value is not a Promise
81
+ *
82
+ * @param {any} value
83
+ */
84
+ export function expect_promise(value) {
85
+ v.parse(v.instance(Promise), value);
86
+ }
87
+
88
+ export { expect_promise as promise };
89
+
90
+ /**
91
+ * Throws a validation error if value is not a Map
92
+ *
93
+ * @param {any} value
94
+ */
95
+ export function expect_map(value) {
96
+ v.parse(v.instance(Map), value);
97
+ }
98
+
99
+ export { expect_map as map };
100
+
101
+ /**
102
+ * Throws a validation error if value is not a Set
103
+ *
104
+ * @param {any} value
105
+ */
106
+ export function expect_set(value) {
107
+ v.parse(v.instance(Set), value);
108
+ }
109
+
110
+ export { expect_set as set };
111
+
112
+ /**
113
+ * Throws a validation error if value is not an Error instance
114
+ *
115
+ * @param {any} value
116
+ */
117
+ export function expect_error(value) {
118
+ v.parse(v.instance(Error), value);
119
+ }
120
+
121
+ export { expect_error as error };
@@ -0,0 +1,26 @@
1
+ /** Value/constraint validators */
2
+ /**
3
+ * Expect a value not to be null
4
+ *
5
+ * @param {any} value
6
+ */
7
+ export function expect_notNull(value: any): void;
8
+ /**
9
+ * Expect a value to be a boolean and true
10
+ *
11
+ * @param {any} value
12
+ */
13
+ export function expect_true(value: any): void;
14
+ /**
15
+ * Expect a positive number
16
+ *
17
+ * @param {any} value
18
+ */
19
+ export function expect_positiveNumber(value: any): void;
20
+ /**
21
+ * Throws a validation error if value is not a string
22
+ *
23
+ * @param {any} value
24
+ */
25
+ export function expect_notEmptyString(value: any): void;
26
+ export { expect_true as true, _true as true, expect_notNull as notNull, expect_positiveNumber as positiveNumber, expect_notEmptyString as notEmptyString };
@@ -0,0 +1,48 @@
1
+ import * as v from 'valibot';
2
+
3
+ /** Value/constraint validators */
4
+
5
+ /**
6
+ * Expect a value not to be null
7
+ *
8
+ * @param {any} value
9
+ */
10
+ export function expect_notNull(value) {
11
+ v.notValue(null, value);
12
+ }
13
+
14
+ /**
15
+ * Expect a value to be a boolean and true
16
+ *
17
+ * @param {any} value
18
+ */
19
+ export function expect_true(value) {
20
+ v.value(true, value);
21
+ }
22
+
23
+ export { expect_true as true };
24
+
25
+ /**
26
+ * Expect a positive number
27
+ *
28
+ * @param {any} value
29
+ */
30
+ export function expect_positiveNumber(value) {
31
+ const schema = v.pipe(v.number(), v.minValue(0));
32
+ v.parse(schema, value);
33
+ }
34
+
35
+ /**
36
+ * Throws a validation error if value is not a string
37
+ *
38
+ * @param {any} value
39
+ */
40
+ export function expect_notEmptyString(value) {
41
+ const schema = v.pipe(v.string(), v.minLength(1));
42
+
43
+ v.parse(schema, value);
44
+ }
45
+
46
+ export { expect_notNull as notNull };
47
+ export { expect_positiveNumber as positiveNumber };
48
+ export { expect_notEmptyString as notEmptyString };
@@ -0,0 +1,6 @@
1
+ export * from "./expect/arrays.js";
2
+ export * from "./expect/primitives.js";
3
+ export * from "./expect/url.js";
4
+ export * from "./expect/objects.js";
5
+ export * from "./expect/values.js";
6
+ export * from "./expect/compounds.js";
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Validation functions that can be used as safe guards in your code
3
+ *
4
+ * @example
5
+ *
6
+ * import * as expect from 'util/expect.js';
7
+ *
8
+ * function logText( text )
9
+ * {
10
+ * expect.string( text );
11
+ * expect.true( 1 > 0 );
12
+ *
13
+ * console.log( text );
14
+ * }
15
+ *
16
+ * logText( 'Hello' );
17
+ * logText( 123 ); // <- Will throw an exception
18
+ */
19
+
20
+ export * from './expect/arrays.js';
21
+ export * from './expect/primitives.js';
22
+ export * from './expect/url.js';
23
+ export * from './expect/objects.js';
24
+ export * from './expect/values.js';
25
+ export * from './expect/compounds.js';
26
+
27
+ // TODO: Implement these validators as needed
28
+ // notNegativeNumber, positiveInteger, notNegativeInteger
29
+ // stringOrNull, stringOrUndefined, notEmptyStringOrNull
30
+ // ArrayBuffer, arrayOrUndefined, arangoCollectionId, uriComponent
31
+ // objectOrUndefined, objectPath, asyncIterator
@@ -24,7 +24,7 @@
24
24
 
25
25
  /* ------------------------------------------------------------------ Imports */
26
26
 
27
- import * as expect from '../expect/index.js';
27
+ import * as expect from '../expect.js';
28
28
 
29
29
  /* ---------------------------------------------------------------- Internals */
30
30
 
@@ -0,0 +1 @@
1
+ export * from "./function/index.js";
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Function utilities main export
3
+ *
4
+ * @description
5
+ * This module provides function manipulation utilities.
6
+ */
7
+
8
+ export * from './function/index.js';
@@ -0,0 +1 @@
1
+ export * from "./geometry/index.js";
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Geometry utilities main export
3
+ *
4
+ * @description
5
+ * This module provides geometric calculation utilities including
6
+ * point-in-polygon tests and other mathematical geometry functions.
7
+ */
8
+
9
+ export * from './geometry/index.js';
@@ -0,0 +1 @@
1
+ export * from "./is/index.js";
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Type checking utilities main export
3
+ *
4
+ * @description
5
+ * This module provides type checking and validation utilities.
6
+ */
7
+
8
+ export * from './is/index.js';
@@ -1,6 +1,6 @@
1
1
  /* ------------------------------------------------------------------ Imports */
2
2
 
3
- import * as expect from '../expect/index.js';
3
+ import * as expect from '../expect.js';
4
4
  import { smallestFirst, largestFirst } from '../compare/index.js';
5
5
 
6
6
  import { IterableTree } from '../../generic/data.js';
@@ -0,0 +1 @@
1
+ export * from "./iterate/index.js";
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Iteration utilities main export
3
+ *
4
+ * @description
5
+ * This module provides iteration and looping utilities.
6
+ */
7
+
8
+ export * from './iterate/index.js';
@@ -1,12 +1,12 @@
1
1
  /* ------------------------------------------------------------------ Imports */
2
2
 
3
- import * as expect from '../expect/index.js';
3
+ import * as expect from '../expect.js';
4
4
 
5
5
  import { equals } from '../compare/index.js';
6
6
 
7
7
  import { toArrayPath } from '../array/index.js';
8
8
 
9
- import { toStringPath } from '../string/index.js';
9
+ import { toStringPath } from '../string.js';
10
10
 
11
11
  import * as is from '../is/index.js';
12
12
 
@@ -0,0 +1 @@
1
+ export * from "./object/index.js";
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Object utilities main export
3
+ *
4
+ * @description
5
+ * This module provides object manipulation and utility functions.
6
+ */
7
+
8
+ export * from './object/index.js';
@@ -0,0 +1,28 @@
1
+ /**
2
+ * Generate cryptographically secure random bytes
3
+ * - Uses Web Crypto API (works in Node.js 16+ and all modern browsers)
4
+ * - Returns Uint8Array for maximum compatibility
5
+ *
6
+ * @param {number} length - Number of bytes to generate
7
+ *
8
+ * @returns {Uint8Array} Random bytes
9
+ */
10
+ export function randomBytes(length: number): Uint8Array;
11
+ /**
12
+ * Generate random bytes and return as base64 string
13
+ * - Cross-platform base64 encoding
14
+ *
15
+ * @param {number} length - Number of bytes to generate
16
+ *
17
+ * @returns {string} Base64 encoded random bytes
18
+ */
19
+ export function randomBytesBase64(length: number): string;
20
+ /**
21
+ * Generate random bytes and return as hex string
22
+ * - Cross-platform hex encoding
23
+ *
24
+ * @param {number} length - Number of bytes to generate
25
+ *
26
+ * @returns {string} Hex encoded random bytes
27
+ */
28
+ export function randomBytesHex(length: number): string;