2018-09-23 00:28:50 +12:00
|
|
|
'use strict'
|
|
|
|
|
2016-03-24 13:15:04 -07:00
|
|
|
const EventEmitter = require('events').EventEmitter
|
2018-09-14 02:10:51 +10:00
|
|
|
const { autoUpdater, AutoUpdater } = process.atomBinding('auto_updater')
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2017-11-01 23:05:27 -05:00
|
|
|
// AutoUpdater is an EventEmitter.
|
2016-08-02 20:38:35 +09:00
|
|
|
Object.setPrototypeOf(AutoUpdater.prototype, EventEmitter.prototype)
|
2017-11-01 23:05:27 -05:00
|
|
|
EventEmitter.call(autoUpdater)
|
2016-01-11 18:40:23 -08:00
|
|
|
|
2016-03-24 13:15:04 -07:00
|
|
|
module.exports = autoUpdater
|