mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-12 18:10:04 -04:00
7 lines
202 B
JavaScript
7 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, '+')
|
|
}
|