mirror of
https://github.com/electron/electron.git
synced 2026-01-08 23:18:06 -05:00
6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
if (process.platform === 'win32') {
|
|
module.exports = require('./auto-updater/auto-updater-win');
|
|
} else {
|
|
module.exports = require('./auto-updater/auto-updater-native');
|
|
}
|