UNPKG

@captive/plop-config

Version:
16 lines (15 loc) 384 B
export function requireURL() { return (promptValue) => { if (promptValue == null || promptValue === '') { return true; } try { // eslint-disable-next-line no-new new URL(String(promptValue)); return true; } catch { return `${promptValue} must not a valid URL`; } }; }