Vladislav Rastoropov ad0109d8f5 deob
2023-03-05 20:00:06 +03:00

16 lines
274 B
JavaScript

const defineLocation = window => {
Object.defineProperties(window.Location, {
'protocol': {
get() {
return 'https:'
}
},
'hostname': {
get() {
return 'www.zalando.co.uk'
}
},
});
}
module.exports = defineLocation;