Skip to content

Commit 4aa65fc

Browse files
committed
chore: fix lint issues
1 parent b125ea4 commit 4aa65fc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

connection/connection_params.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { parseConnectionUri } from "../utils/utils.ts";
22
import { ConnectionParamsError } from "../client/error.ts";
33
import { fromFileUrl, isAbsolute } from "../deps.ts";
4-
import { Oid } from "../query/oid.ts";
54

65
/**
76
* The connection string must match the following URI structure. All parameters but database and user are optional

query/decode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function decodeBinary() {
6565
function decodeText(value: Uint8Array, typeOid: number, decoders?: Decoders) {
6666
const strValue = decoder.decode(value);
6767

68-
if (!!decoders?.[typeOid]) {
68+
if (decoders?.[typeOid]) {
6969
return decoders[typeOid](strValue);
7070
}
7171

0 commit comments

Comments
 (0)