We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f7b2ae commit 8a974adCopy full SHA for 8a974ad
src/utils.ts
@@ -265,14 +265,13 @@ function fromError(error: any): JSONValue {
265
}
266
267
function isRPCRequestParams(data: JSONValue): data is RPCRequestParams {
268
- return typeof data === "object" && !Array.isArray(data);
+ return typeof data === 'object' && !Array.isArray(data);
269
270
271
function isRPCResponseResult(data: JSONValue): data is RPCResponseResult {
272
273
274
275
-
276
/**
277
* Error constructors for non-Polykey rpcErrors
278
* Allows these rpcErrors to be reconstructed from RPC metadata
0 commit comments