UNPKG

nextjs-utils-hooks

Version:

A collection of useful hooks and utils built specifically for Next.js App Router.

10 lines (9 loc) 135 B
export function isValidUrl(url) { try { new URL(url); return true; } catch { return false; } }