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