UNPKG

@typed/content-hash

Version:

Content hash a directory of HTML/JS/CSS files and other static assets

9 lines (8 loc) 209 B
// TODO: Should this detect if something is using your same baseUrl/origin? export const isExternalUrl = (path: string): boolean => { try { return !!new URL(path).href } catch { return false } }