asarfuckery/electronasar/stable/browser/api/auto-updater/auto-updater-native.js

11 lines
305 B
JavaScript
Raw Normal View History

2019-01-17 18:22:05 +00:00
'use strict'
const EventEmitter = require('events').EventEmitter
const { autoUpdater, AutoUpdater } = process.atomBinding('auto_updater')
// AutoUpdater is an EventEmitter.
Object.setPrototypeOf(AutoUpdater.prototype, EventEmitter.prototype)
EventEmitter.call(autoUpdater)
module.exports = autoUpdater