Skip to content

Commit 9b83d81

Browse files
committed
Fix lint
1 parent 2655928 commit 9b83d81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/types/urlencoded.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function urlencoded (options) {
5151
}
5252

5353
// create the appropriate query parser
54-
var queryparse = createQueryParser(opts, extended);
54+
var queryparse = createQueryParser(opts, extended)
5555

5656
// create the appropriate type checking function
5757
var shouldParse = typeof type !== 'function'
@@ -132,7 +132,7 @@ function createQueryParser (options, extended) {
132132
parameterLimit = parameterLimit | 0
133133
}
134134

135-
var depth = extended ? Infinity : 0;
135+
var depth = extended ? Infinity : 0
136136

137137
return function queryparse (body) {
138138
var paramCount = parameterCount(body, parameterLimit)

0 commit comments

Comments
 (0)