mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 10:19:08 +00:00
15 lines
190 B
JavaScript
15 lines
190 B
JavaScript
let shouldQuitFlag = false;
|
|
|
|
function markShouldQuit() {
|
|
shouldQuitFlag = true;
|
|
}
|
|
|
|
function shouldQuit() {
|
|
return shouldQuitFlag;
|
|
}
|
|
|
|
module.exports = {
|
|
shouldQuit,
|
|
markShouldQuit
|
|
};
|