Prettify
This commit is contained in:
@ -2,16 +2,16 @@ function createSearch(query) {
|
||||
const params = []
|
||||
|
||||
Object.keys(query).forEach(param => {
|
||||
if (query[param] === '') {
|
||||
if (query[param] === "") {
|
||||
params.push(param) // Omit the trailing "=" from param=
|
||||
} else {
|
||||
params.push(`${param}=${encodeURIComponent(query[param])}`)
|
||||
}
|
||||
})
|
||||
|
||||
const search = params.join('&')
|
||||
const search = params.join("&")
|
||||
|
||||
return search ? `?${search}` : ''
|
||||
return search ? `?${search}` : ""
|
||||
}
|
||||
|
||||
module.exports = createSearch
|
||||
|
||||
Reference in New Issue
Block a user