-
-
Save MarkoSh/fd941039b0d9b9ffa7a73cde7eac22d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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