mirror of
https://github.com/electron/electron.git
synced 2026-01-25 15:28:11 -05:00
7 lines
213 B
JavaScript
7 lines
213 B
JavaScript
const {EventEmitter} = require('events')
|
|
const {systemPreferences} = process.atomBinding('system_preferences')
|
|
|
|
Object.setPrototypeOf(systemPreferences, EventEmitter.prototype)
|
|
|
|
module.exports = systemPreferences
|