10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
|
"use strict";
|
||
|
|
||
|
// This is a thin wrapper around `window.location`, in order to contain the
|
||
|
// side-effects. Do not add logic to it as it cannot be tested, only mocked.
|
||
|
module.exports = {
|
||
|
reload() {
|
||
|
window.location.reload();
|
||
|
},
|
||
|
};
|