UNPKG

msw

Version:

Seamless REST/GraphQL API mocking library for browser and Node.js.

7 lines (6 loc) 173 B
/** * Determines if the given URL string is an absolute URL. */ export function isAbsoluteUrl(url: string): boolean { return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(url) }