Skip to content

Instantly share code, notes, and snippets.

@MarkoSh
Last active November 16, 2024 21:43
Show Gist options
  • Save MarkoSh/fd941039b0d9b9ffa7a73cde7eac22d2 to your computer and use it in GitHub Desktop.
Save MarkoSh/fd941039b0d9b9ffa7a73cde7eac22d2 to your computer and use it in GitHub Desktop.
URL = new Proxy(URL, {
construct(target, args: [string]) {
const url: any = new target(...args);
if (url.hash) {
const hashString = url.hash.startsWith('#') ? url.hash.slice(1) : url.hash;
url.hashParams = new URLSearchParams(hashString);
}
// Добавляем свойство pathSegments, разбивая pathname на массив
url.pathSegments = url.pathname.split('/').filter(segment => segment.length > 0);
return url;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment