mirror of
https://github.com/electron/electron.git
synced 2026-02-01 18:55:08 -05:00
8 lines
223 B
CoffeeScript
8 lines
223 B
CoffeeScript
EventEmitter = require('events').EventEmitter
|
|
|
|
Application = process.atomBinding('app').Application
|
|
Application.prototype.__proto__ = EventEmitter.prototype
|
|
|
|
# Only one App object pemitted.
|
|
module.exports = new Application
|