Updated pages and referrer filters to merge urls.
This commit is contained in:
@@ -62,3 +62,7 @@ export function formatLongNumber(value) {
|
||||
|
||||
return formatNumber(n);
|
||||
}
|
||||
|
||||
export function removeTrailingSlash(url) {
|
||||
return url.length > 1 && url.endsWith('/') ? url.slice(0, -1) : url;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user