Skip to content

Commit

Permalink
fix(style):
Browse files Browse the repository at this point in the history
  • Loading branch information
yacineb committed Dec 2, 2024
1 parent 64ffc86 commit 26d78eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pglite/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export async function formatQuery(
tx?: Transaction | PGliteInterface,
) {
if (Array.isArray(params)) {
params = params.filter(p => typeof p !== "undefined" && p !== null)
params = params.filter((p) => typeof p !== 'undefined' && p !== null)
}

if (!params?.length) {
Expand Down

0 comments on commit 26d78eb

Please sign in to comment.