overleaf/services/web/frontend/js/shared/components/location.js

10 lines
217 B
JavaScript
Raw Normal View History

// window location-related functions in a separate module so they can be mocked/stubbed in tests
export function reload() {
window.location.reload()
}
export function assign(url) {
window.location.assign(url)
}