@applitools/utils
Advanced tools
+7
-0
| # Changelog | ||
| ## [1.14.2](https://github.com/Applitools-Dev/sdk/compare/js/utils@1.14.1...js/utils@1.14.2) (2026-03-08) | ||
| ### Bug Fixes | ||
| * unskip js/mcp ([#3618](https://github.com/Applitools-Dev/sdk/issues/3618)) ([103f9e2](https://github.com/Applitools-Dev/sdk/commit/103f9e2f18cddc225aba2f2f59556e5fa38965c0)) | ||
| ## [1.14.1](https://github.com/Applitools-Dev/sdk/compare/js/utils@1.14.0...js/utils@1.14.1) (2025-12-01) | ||
@@ -4,0 +11,0 @@ |
+1
-1
| { | ||
| "name": "@applitools/utils", | ||
| "version": "1.14.1", | ||
| "version": "1.14.2", | ||
| "keywords": [ | ||
@@ -5,0 +5,0 @@ "applitools", |
+4
-4
@@ -20,6 +20,6 @@ type NamedParam = { | ||
| }; | ||
| export declare function notNull(value: any, { name }: NamedParam): void; | ||
| export declare function notNull(value: any, { name }: NamedParam): asserts value; | ||
| export declare function isBoolean(value: any, { name, strict }: StrictParam): void; | ||
| export declare function isNumber(value: any, { name, strict, lt, lte, gt, gte }: NumberParam): void; | ||
| export declare function isInteger(value: any, { name, strict, lt, lte, gt, gte }: NumberParam): void; | ||
| export declare function isNumber(value: any, { name, strict, lt, lte, gt, gte }: NumberParam): asserts value is number; | ||
| export declare function isInteger(value: any, { name, strict, lt, lte, gt, gte }: NumberParam): asserts value is number; | ||
| export declare function isFunction(value: any, { name, strict }: StrictParam): asserts value is Function; | ||
@@ -30,3 +30,3 @@ export declare function isLessThen(value: any, limit: number, { name }: NamedParam): void; | ||
| export declare function isGreaterThenOrEqual(value: any, limit: number, { name }: NamedParam): void; | ||
| export declare function isString(value: any, { name, strict, alpha, numeric }: StringParam): void; | ||
| export declare function isString(value: any, { name, strict, alpha, numeric }: StringParam): asserts value is string; | ||
| export declare function isAlphanumeric(value: any, { name }: NamedParam): void; | ||
@@ -33,0 +33,0 @@ export declare function isAlpha(value: any, { name }: NamedParam): void; |
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
Found 2 instances
AI-detected potential code anomaly
Supply chain riskAI has identified unusual behaviors that may pose a security risk.
Found 2 instances
107266
0.34%