@angular-eslint/utils 17.3.1-alpha.0 → 17.3.1-alpha.2

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 (2) hide show
  1. package/dist/utils.d.ts +1 -1
  2. package/package.json +2 -2
package/dist/utils.d.ts CHANGED
@@ -15,7 +15,7 @@ export declare const objectKeys: <T>(o: T) => readonly Extract<keyof T, string>[
15
15
  * Enforces the invariant that the input is an array.
16
16
  */
17
17
  export declare function arrayify<T>(value: T | readonly T[]): readonly T[];
18
- export declare const isNotNullOrUndefined: <T>(input: T | null | undefined) => input is T;
18
+ export declare const isNotNullOrUndefined: <T>(input: null | undefined | T) => input is T;
19
19
  export declare const kebabToCamelCase: (value: string) => string;
20
20
  /**
21
21
  * Convert an array to human-readable text.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-eslint/utils",
3
- "version": "17.3.1-alpha.0",
3
+ "version": "17.3.1-alpha.2",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "typescript": "*"
21
21
  },
22
22
  "dependencies": {
23
- "@angular-eslint/bundled-angular-compiler": "17.3.1-alpha.0",
23
+ "@angular-eslint/bundled-angular-compiler": "17.3.1-alpha.2",
24
24
  "@typescript-eslint/utils": "7.2.0"
25
25
  },
26
26
  "gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"