forked from distok/asarfuckery
7 lines
No EOL
319 B
JavaScript
7 lines
No EOL
319 B
JavaScript
'use strict';
|
|
const { EventEmitter } = require('events');
|
|
const { Notification, isSupported } = process.electronBinding('notification');
|
|
Object.setPrototypeOf(Notification.prototype, EventEmitter.prototype);
|
|
Notification.isSupported = isSupported;
|
|
module.exports = Notification;
|
|
//# sourceMappingURL=notification.js.map
|