Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
papandreou committed Jul 23, 2024
1 parent 4dd66ec commit cd81d5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/types/urlencoded.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function urlencoded (options) {
}

// create the appropriate query parser
var queryparse = createQueryParser(opts, extended);
var queryparse = createQueryParser(opts, extended)

// create the appropriate type checking function
var shouldParse = typeof type !== 'function'
Expand Down Expand Up @@ -135,7 +135,7 @@ function createQueryParser (options, extended) {
parameterLimit = parameterLimit | 0
}

var depth = extended ? Infinity : 0;
var depth = extended ? Infinity : 0

return function queryparse (body) {
var paramCount = parameterCount(body, parameterLimit)
Expand Down

0 comments on commit cd81d5d

Please sign in to comment.