mirror of
https://github.com/iptv-org/iptv.git
synced 2026-01-22 21:29:13 -05:00
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, '+')
|
|
}
|