updated npm modules

This commit is contained in:
2019-05-20 20:43:45 -05:00
parent 2319197b81
commit f166b72b7d
1113 changed files with 8758 additions and 12227 deletions

8
node_modules/parseurl/index.js generated vendored
View File

@@ -128,11 +128,15 @@ function fastparse (str) {
var url = Url !== undefined
? new Url()
: {}
url.path = str
url.href = str
url.pathname = pathname
url.query = query
url.search = search
if (search !== null) {
url.query = query
url.search = search
}
return url
}