Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
url: ensure search property is consistently null vs empty
Fixes: #13404
  • Loading branch information
JustinBeckwith committed Jun 11, 2017
commit d7256990877bbda9ed9a71814587bf3793b0188f
4 changes: 2 additions & 2 deletions lib/url.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ Url.prototype.parse = function parse(url, parseQueryString, slashesDenoteHost) {
this.query = this.search.slice(1);
}
} else if (parseQueryString) {
this.search = '';
this.search = null;
this.query = Object.create(null);
}
return this;
Expand Down Expand Up @@ -389,7 +389,7 @@ Url.prototype.parse = function parse(url, parseQueryString, slashesDenoteHost) {
}
} else if (parseQueryString) {
// no query string, but parseQueryString still requested
this.search = '';
this.search = null;
this.query = Object.create(null);
}

Expand Down
4 changes: 2 additions & 2 deletions test/parallel/test-url-parse-query.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const parseTestsWithQueryString = {
host: 'example.com',
hostname: 'example.com',
query: createWithNoPrototype(),
search: '',
search: null,
pathname: '/',
path: '/'
},
Expand All @@ -48,7 +48,7 @@ const parseTestsWithQueryString = {
port: null,
hostname: null,
hash: null,
search: '',
search: null,
query: createWithNoPrototype(),
pathname: '/example',
path: '/example',
Expand Down