File tree 2 files changed +4
-4
lines changed
packages/libsql-client/src
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -140,11 +140,11 @@ export class HttpClient implements Client {
140
140
) : Promise < Array < ResultSet > > {
141
141
return this . limit < Array < ResultSet > > ( async ( ) => {
142
142
try {
143
- const normalizedStmts = stmts . map ( stmt => {
143
+ const normalizedStmts = stmts . map ( ( stmt ) => {
144
144
if ( Array . isArray ( stmt ) ) {
145
145
return {
146
146
sql : stmt [ 0 ] ,
147
- args : stmt [ 1 ] || [ ]
147
+ args : stmt [ 1 ] || [ ] ,
148
148
} ;
149
149
}
150
150
return stmt ;
Original file line number Diff line number Diff line change @@ -198,11 +198,11 @@ export class WsClient implements Client {
198
198
return this . limit < Array < ResultSet > > ( async ( ) => {
199
199
const streamState = await this . #openStream( ) ;
200
200
try {
201
- const normalizedStmts = stmts . map ( stmt => {
201
+ const normalizedStmts = stmts . map ( ( stmt ) => {
202
202
if ( Array . isArray ( stmt ) ) {
203
203
return {
204
204
sql : stmt [ 0 ] ,
205
- args : stmt [ 1 ] || [ ]
205
+ args : stmt [ 1 ] || [ ] ,
206
206
} ;
207
207
}
208
208
return stmt ;
You can’t perform that action at this time.
0 commit comments