8 lines
202 B
JavaScript
8 lines
202 B
JavaScript
|
const normalize = require('normalize-url')
|
||
|
|
||
|
module.exports = function ({ url }) {
|
||
|
const normalized = normalize(url, { stripWWW: false })
|
||
|
|
||
|
return decodeURIComponent(normalized).replace(/\s/g, '+')
|
||
|
}
|