Skip to content

Commit 44c31af

Browse files
committed
Eliminate eslint warning
1 parent 41d65bb commit 44c31af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/connection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function execute(sql, a2, a3, a4) {
136136
}
137137
}
138138
if (result.implicitResults && !executeOpts.resultSet) {
139-
function processImplicitResult(ix) {
139+
const processImplicitResult = function(ix) {
140140
const resultSet = result.implicitResults[ix];
141141
if (!resultSet) {
142142
executeCb(null, result);
@@ -152,7 +152,7 @@ function execute(sql, a2, a3, a4) {
152152
processImplicitResult(ix + 1);
153153
}
154154
);
155-
}
155+
};
156156
processImplicitResult(0);
157157
} else {
158158
if (result.implicitResults) {

0 commit comments

Comments
 (0)