UNPKG

@astrojs/starlight

Version:

Build beautiful, high-performance documentation websites with Astro

5 lines (3 loc) 189 B
const HTTPProtocolRegEx = /^https?:\/\//; /** Check if a string starts with one of `http://` or `https://`. */ export const isAbsoluteUrl = (link: string) => HTTPProtocolRegEx.test(link);