UNPKG

163 BJavaScriptView Raw
1const Telemetry = require(`./telemetry`)
2const instance = new Telemetry()
3
4const flush = _ => {
5 instance.sendEvents().catch(e => {
6 // ignore
7 })
8}
9
10flush()