mirror of
https://github.com/pysunday/sdenv.git
synced 2025-04-12 03:37:16 +08:00
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
module.exports = (sdenv) => {
|
|
const window = sdenv.memory.sdWindow;
|
|
|
|
Object.defineProperty(window.location, 'replace', {
|
|
...Object.getOwnPropertyDescriptor(window.location, 'replace'),
|
|
writable: false,
|
|
value: function(url) {
|
|
sdenv.tools.exit({ url });
|
|
}
|
|
});
|
|
}
|