Sha256: 32bd5c3c315a59ca700df46a56c2cb5583fb356f657f09e7a07ea972c9dee6a8
Contents?: true
Size: 368 Bytes
Versions: 26
Compression:
Stored size: 368 Bytes
Contents
import { cleanUrl } from '../url/cleanUrl.mjs'; import { getAbsoluteUrl } from '../url/getAbsoluteUrl.mjs'; function normalizePath(path, baseUrl) { if (path instanceof RegExp) { return path; } const maybeAbsoluteUrl = getAbsoluteUrl(path, baseUrl); return cleanUrl(maybeAbsoluteUrl); } export { normalizePath }; //# sourceMappingURL=normalizePath.mjs.map
Version data entries
26 entries across 26 versions & 1 rubygems