UNPKG

@wordpress/url

Version:
26 lines (25 loc) 598 B
/** * Determines whether the given string looks like a URL. * * @param url The string to scrutinise. * * @example * ```js * const isURL = isURL( 'https://wordpress.org' ); // true * ``` * * @see https://url.spec.whatwg.org/ * @see https://url.spec.whatwg.org/#valid-url-string * * @return Whether or not it looks like a URL. */ export function isURL( url: string ): boolean { // A URL can be considered value if the `URL` constructor is able to parse // it. The constructor throws an error for an invalid URL. try { new URL( url ); return true; } catch { return false; } }