UNPKG

@11ty/eleventy

Version:

A simpler static site generator.

10 lines (9 loc) 147 B
export default function isValidUrl(url) { try { new URL(url); return true; } catch (e) { // invalid url OR local path return false; } }