@thisisagile/easy 17.24.2 → 17.24.3
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/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/types/Indexed.d.ts +1 -0
- package/dist/types/Indexed.mjs +14 -0
- package/dist/types/Indexed.mjs.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/types/Indexed.ts +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ export * from './types/Get';
|
|
|
66
66
|
export * from './types/Id';
|
|
67
67
|
export * from './types/Identity';
|
|
68
68
|
export * from './types/IdName';
|
|
69
|
+
export * from './types/Indexed';
|
|
69
70
|
export * from './types/Is';
|
|
70
71
|
export * from './types/IsA';
|
|
71
72
|
export * from './types/IsDate';
|
package/dist/index.js
CHANGED
|
@@ -182,6 +182,7 @@ __export(src_exports, {
|
|
|
182
182
|
isHttpStatus: () => isHttpStatus,
|
|
183
183
|
isIdentity: () => isIdentity,
|
|
184
184
|
isIn: () => isIn,
|
|
185
|
+
isIndexed: () => isIndexed,
|
|
185
186
|
isInstance: () => isInstance,
|
|
186
187
|
isIntersecting: () => isIntersecting,
|
|
187
188
|
isIsoDateString: () => isIsoDateString,
|
|
@@ -3289,6 +3290,9 @@ var Environment = class _Environment extends Enum {
|
|
|
3289
3290
|
var isFalsy = (v) => !v;
|
|
3290
3291
|
var isTruthy = (v) => !isFalsy(v);
|
|
3291
3292
|
|
|
3293
|
+
// src/types/Indexed.ts
|
|
3294
|
+
var isIndexed = (u) => isA(u, "index");
|
|
3295
|
+
|
|
3292
3296
|
// src/types/Message.ts
|
|
3293
3297
|
var ofMessage = (g, ...params) => isFunc(g) ? g(...params) : g;
|
|
3294
3298
|
|
|
@@ -3643,6 +3647,7 @@ var wait = (millis) => Wait.wait(millis);
|
|
|
3643
3647
|
isHttpStatus,
|
|
3644
3648
|
isIdentity,
|
|
3645
3649
|
isIn,
|
|
3650
|
+
isIndexed,
|
|
3646
3651
|
isInstance,
|
|
3647
3652
|
isIntersecting,
|
|
3648
3653
|
isIsoDateString,
|