mirror of
https://github.com/navidrome/navidrome.git
synced 2025-08-10 00:52:20 +00:00
13 lines
183 B
JavaScript
13 lines
183 B
JavaScript
export const urlValidate = (value) => {
|
|
if (!value) {
|
|
return undefined
|
|
}
|
|
|
|
try {
|
|
new URL(value)
|
|
return undefined
|
|
} catch (_) {
|
|
return 'ra.validation.url'
|
|
}
|
|
}
|