@eslint-react/eff 2.7.5-next.1 → 2.7.5-next.11
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 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ declare function or<T>(a: (data: T) => boolean, b: (data: T) => boolean): (data:
|
|
|
43
43
|
*/
|
|
44
44
|
declare function isArray<T>(data: ArrayLike<unknown> | T): data is NarrowedTo<T, ReadonlyArray<unknown>>;
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* Check if the given parameter is of type `"object"` via `typeof`, excluding `null`.
|
|
47
47
|
*
|
|
48
48
|
* @param data The variable to be checked for being an object type.
|
|
49
49
|
* @returns The input type, narrowed to only objects.
|
package/dist/index.js
CHANGED
|
@@ -19,7 +19,7 @@ function isArray(data) {
|
|
|
19
19
|
return Array.isArray(data);
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
|
-
*
|
|
22
|
+
* Check if the given parameter is of type `"object"` via `typeof`, excluding `null`.
|
|
23
23
|
*
|
|
24
24
|
* @param data The variable to be checked for being an object type.
|
|
25
25
|
* @returns The input type, narrowed to only objects.
|
package/package.json
CHANGED