akamai-deobfuscator-2.0/browser-env/NetworkInformation.js
Vladislav Rastoropov ad0109d8f5 deob
2023-03-05 20:00:06 +03:00

24 lines
251 B
JavaScript

class NetworkInformation {
constructor() {
}
get downlink() {
return 4.6
}
get effectiveType() {
return '4g';
}
get rtt() {
return 150;
}
get saveData() {
return false
}
}
module.exports = NetworkInformation;