mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
11 lines
325 B
JavaScript
11 lines
325 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2024 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
const url = new URL(window.location.href);
|
|
if (url.pathname.endsWith('/') && url.pathname !== '/') {
|
|
url.pathname = url.pathname.substring(0, url.pathname.length - 1);
|
|
window.history.replaceState(null, undefined, url.toString());
|
|
}
|