notification.js 167 B

1234567
  1. 'use strict';
  2. const { Notification, isSupported } = process.electronBinding('notification');
  3. Notification.isSupported = isSupported;
  4. module.exports = Notification;