blob: ef6891bf3df8363ab873e87808f8c6fe29044f73 [file] [log] [blame]
addEventListener('message', function(e) {
self.postMessage(navigator.connection.type + ',' + navigator.connection.downlinkMax + ',' + navigator.connection.effectiveType + ',' + navigator.connection.rtt + ',' + navigator.connection.downlink);
}, false);
navigator.connection.addEventListener('change', function() {
self.postMessage(navigator.connection.type + ',' + navigator.connection.downlinkMax + ',' + navigator.connection.effectiveType + ',' + navigator.connection.rtt + ',' + navigator.connection.downlink);
}, false);