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 1237cd6 commit 5e87af2Copy full SHA for 5e87af2
packages/json-rpc-engine/src/v2/utils.ts
@@ -48,7 +48,9 @@ export function stringify(value: unknown): string {
48
return JSON.stringify(value, null, 2);
49
}
50
51
-const JsonRpcEngineErrorSymbol = Symbol.for('json-rpc-engine#JsonRpcEngineError');
+const JsonRpcEngineErrorSymbol = Symbol.for(
52
+ 'json-rpc-engine#JsonRpcEngineError',
53
+);
54
55
export class JsonRpcEngineError extends Error {
56
private readonly [JsonRpcEngineErrorSymbol] = true;
0 commit comments