mirror of
https://github.com/electron/electron.git
synced 2026-02-16 10:07:05 -05:00
11 lines
309 B
JavaScript
11 lines
309 B
JavaScript
'use strict'
|
|
|
|
const EventEmitter = require('events').EventEmitter
|
|
const { autoUpdater, AutoUpdater } = process.electronBinding('auto_updater')
|
|
|
|
// AutoUpdater is an EventEmitter.
|
|
Object.setPrototypeOf(AutoUpdater.prototype, EventEmitter.prototype)
|
|
EventEmitter.call(autoUpdater)
|
|
|
|
module.exports = autoUpdater
|