mirror of
https://github.com/electron/electron.git
synced 2026-05-02 03:00:22 -04:00
9 lines
151 B
JavaScript
9 lines
151 B
JavaScript
const { app } = require('electron');
|
|
|
|
app.whenReady().then(() => {
|
|
process.stdout.write(app.getLocale());
|
|
process.stdout.end();
|
|
|
|
app.quit();
|
|
});
|