UNPKG

msw

Version:

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

23 lines (19 loc) 708 B
import type { Path } from './matchRequestUrl' import { cleanUrl } from '../url/cleanUrl' import { getAbsoluteUrl } from '../url/getAbsoluteUrl' /** * Normalizes a given request handler path: * - Preserves RegExp. * - Removes query parameters and hashes. * - Rebases relative URLs against the "baseUrl" or the current location. * - Preserves relative URLs in Node.js, unless specified otherwise. * - Preserves optional path parameters. */ export function normalizePath(path: Path, baseUrl?: string): Path { // RegExp paths do not need normalization. if (path instanceof RegExp) { return path } const maybeAbsoluteUrl = getAbsoluteUrl(path, baseUrl) return cleanUrl(maybeAbsoluteUrl) }