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 66bacb7 commit 0db56d0Copy full SHA for 0db56d0
packages/driver/src/errors/base.ts
@@ -72,7 +72,7 @@ function tryParseInt(val: Uint8Array | string | undefined) {
72
}
73
74
function readAttrStr(val: Uint8Array | string | undefined) {
75
- return val instanceof Uint8Array ? utf8Decoder.decode(val) : (val ?? "");
+ return val instanceof Uint8Array ? utf8Decoder.decode(val) : val ?? "";
76
77
78
export function prettyPrintError(
0 commit comments