File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ function getSqlExecutor(httpRequestFieldName) {
97
97
//if the parameter is an object, assume it's a blob parameter
98
98
if ( typeof param === "object" && param !== null ) {
99
99
if ( param . hasOwnProperty ( "data" ) ) {
100
- var data = param . data ;
100
+ const data = param . data ;
101
101
let buff = null ;
102
102
if ( typeof Buffer . from === "function" ) {
103
103
// Node 5.10+
@@ -122,7 +122,7 @@ function getSqlExecutor(httpRequestFieldName) {
122
122
//if the parameter is an object, assume it's a blob parameter
123
123
if ( typeof param === "object" && param !== null ) {
124
124
if ( param . hasOwnProperty ( "data" ) ) {
125
- var data = param . data ;
125
+ const data = param . data ;
126
126
let buff = null ;
127
127
if ( typeof Buffer . from === "function" ) {
128
128
// Node 5.10+
@@ -185,7 +185,7 @@ function getSqlExecutor(httpRequestFieldName) {
185
185
186
186
//get field count for row
187
187
let fieldcount = 0 ;
188
- for ( var prop in row ) {
188
+ for ( const prop in row ) {
189
189
if ( Object . prototype . hasOwnProperty . call ( row , prop ) ) {
190
190
fieldcount ++ ;
191
191
}
You can’t perform that action at this time.
0 commit comments