2017-04-23 12:16:19 +00:00
|
|
|
const {EventEmitter} = require('events')
|
2017-05-30 10:27:24 +00:00
|
|
|
const {Notification, isSupported} = process.atomBinding('notification')
|
2017-04-23 12:16:19 +00:00
|
|
|
|
|
|
|
Object.setPrototypeOf(Notification.prototype, EventEmitter.prototype)
|
|
|
|
|
2017-05-30 10:27:24 +00:00
|
|
|
Notification.isSupported = isSupported
|
|
|
|
|
2017-04-23 12:16:19 +00:00
|
|
|
module.exports = Notification
|