blob: 3c0119089555aa495fcc8aeba61c10dda45cbc67 [file] [log] [blame]
onconnect = e => {
var port = e.ports[0];
port.onmessage = (e) => {
if (e.data.type == 'COUNT_FEATURE')
internals.countFeature(e.data.feature);
else if (e.data.type == 'COUNT_DEPRECATION')
internals.countDeprecation(e.data.feature);
};
port.postMessage('CONNECTED');
}