@orpc/shared 0.37.0 → 0.38.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.js +1 -1
- package/dist/src/object.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/src/object.d.ts
CHANGED
|
@@ -6,8 +6,7 @@ export declare function findDeepMatches(check: (value: unknown) => boolean, payl
|
|
|
6
6
|
values: unknown[];
|
|
7
7
|
};
|
|
8
8
|
/**
|
|
9
|
-
* Check if the value is an object.
|
|
10
|
-
* Even object created by Object.create(null) is considered an object.
|
|
9
|
+
* Check if the value is an object even it created by `Object.create(null)` or more tricky way.
|
|
11
10
|
*/
|
|
12
11
|
export declare function isObject(value: unknown): value is Record<PropertyKey, unknown>;
|
|
13
12
|
//# sourceMappingURL=object.d.ts.map
|