Skip to content

Commit b4c36f5

Browse files
Run format
1 parent 2ecdae3 commit b4c36f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,12 @@ class PlanetScaleConnection implements DatabaseConnection {
118118
: compiledQuery.parameters.map((param) => (param instanceof Date ? formatDate(param) : param))
119119

120120
const results = await this.#conn.execute(compiledQuery.sql, parameters)
121-
121+
122122
// If an error is returned throw it.
123123
if (results.error) {
124124
throw results.error
125125
}
126-
126+
127127
return {
128128
rows: results.rows as O[],
129129
numUpdatedOrDeletedRows: results.rowsAffected == null ? undefined : BigInt(results.rowsAffected),

0 commit comments

Comments
 (0)