mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -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();
|
|
});
|