6 lines
210 B
JavaScript
6 lines
210 B
JavaScript
const EventEmitter = require('events').EventEmitter
|
|
const autoUpdater = process.atomBinding('auto_updater').autoUpdater
|
|
|
|
Object.setPrototypeOf(autoUpdater, EventEmitter.prototype)
|
|
|
|
module.exports = autoUpdater
|