mirror of
https://gitlab.com/RemixDev/deemix-webui.git
synced 2025-01-24 15:21:43 +00:00
9 lines
277 B
JavaScript
9 lines
277 B
JavaScript
|
function isValidURL(text){
|
||
|
if (text.toLowerCase().startsWith("http"))
|
||
|
if (text.toLowerCase().indexOf("deezer.com") >= 0 || text.toLowerCase().indexOf("open.spotify.com") >= 0)
|
||
|
return true
|
||
|
else if (text.toLowerCase().startsWith("spotify:"))
|
||
|
return true
|
||
|
return false
|
||
|
}
|