electron/lib/browser/api/system-preferences.js

7 lines
223 B
JavaScript
Raw Normal View History

2016-04-24 12:13:46 +00:00
const {EventEmitter} = require('events')
const {systemPreferences} = process.atomBinding('system_preferences')
2016-08-02 08:12:17 +00:00
Object.setPrototypeOf(systemPreferences.__proto__, EventEmitter.prototype)
2016-04-24 12:13:46 +00:00
module.exports = systemPreferences