@eslint-react/jsx 0.8.8-beta.7 → 0.8.9-beta.0
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.cjs +2 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/node_modules/@eslint-react/ast/dist/index.cjs +1 -0
- package/node_modules/@eslint-react/ast/dist/index.js +1 -0
- package/node_modules/@eslint-react/ast/dist/index.mjs +1 -0
- package/node_modules/@eslint-react/ast/package.json +1 -1
- package/node_modules/@eslint-react/tools/dist/index.cjs +715 -1702
- package/node_modules/@eslint-react/tools/dist/index.d.mts +1 -1
- package/node_modules/@eslint-react/tools/dist/index.d.ts +1 -1
- package/node_modules/@eslint-react/tools/dist/index.js +715 -1702
- package/node_modules/@eslint-react/tools/dist/index.mjs +706 -1693
- package/node_modules/@eslint-react/tools/package.json +2 -2
- package/node_modules/@eslint-react/types/package.json +1 -1
- package/package.json +4 -4
|
@@ -35,7 +35,7 @@ type ArrayElement<A> = A extends readonly (infer T)[] ? T : never;
|
|
|
35
35
|
* @param fn The function to get the value to compare.
|
|
36
36
|
* @returns new array with unique values.
|
|
37
37
|
*/
|
|
38
|
-
declare function uniqueBy<T>(arr: T[], fn: (x: T) => unknown): T[];
|
|
38
|
+
declare function uniqueBy<T>(arr: readonly T[], fn: (x: T) => unknown): T[];
|
|
39
39
|
|
|
40
40
|
/**
|
|
41
41
|
* @since 0.0.1
|
|
@@ -35,7 +35,7 @@ type ArrayElement<A> = A extends readonly (infer T)[] ? T : never;
|
|
|
35
35
|
* @param fn The function to get the value to compare.
|
|
36
36
|
* @returns new array with unique values.
|
|
37
37
|
*/
|
|
38
|
-
declare function uniqueBy<T>(arr: T[], fn: (x: T) => unknown): T[];
|
|
38
|
+
declare function uniqueBy<T>(arr: readonly T[], fn: (x: T) => unknown): T[];
|
|
39
39
|
|
|
40
40
|
/**
|
|
41
41
|
* @since 0.0.1
|