Files
overleaf-cep/services/web/frontend/js/shared/components/location.js
roo hutton c1b8bfd73c Merge pull request #21905 from overleaf/rh-pause-sub
Add support for pausing subscription

GitOrigin-RevId: f939ea4e7f3c2b1fa16dcb8aff1b2460d091d4e2
2025-01-23 09:06:04 +00:00

24 lines
606 B
JavaScript

// window location-related functions in a separate module so they can be mocked/stubbed in tests
export const location = {
assign(url) {
// eslint-disable-next-line no-restricted-syntax
window.location.assign(url)
},
replace(url) {
// eslint-disable-next-line no-restricted-syntax
window.location.replace(url)
},
reload() {
// eslint-disable-next-line no-restricted-syntax
window.location.reload()
},
setHash(hash) {
window.location.hash = hash
},
toString() {
// eslint-disable-next-line no-restricted-syntax
return window.location.toString()
},
}