Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix lint
  • Loading branch information
papandreou committed Jul 23, 2024
commit 9b83d8181f86f03fcdb0fae8e0e7476e8f60da9e
4 changes: 2 additions & 2 deletions lib/types/urlencoded.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,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 @@ -132,7 +132,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