electron/lib/browser/api/notification.js
2017-05-30 20:27:24 +10:00

8 lines
255 B
JavaScript

const {EventEmitter} = require('events')
const {Notification, isSupported} = process.atomBinding('notification')
Object.setPrototypeOf(Notification.prototype, EventEmitter.prototype)
Notification.isSupported = isSupported
module.exports = Notification