mirror of
https://github.com/rastvl/akamai-deobfuscator-2.0.git
synced 2025-04-20 02:29:56 +08:00
24 lines
251 B
JavaScript
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; |