Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* Module variables
*/
let quitter = false;
function AppQuit() {
this.canQuit = false;
}
AppQuit.prototype.shouldQuitToBackground = function () {
if ( this.canQuit ) {
this.canQuit = false;
return false;
}
return true;
};
AppQuit.prototype.allowQuit = function () {
this.canQuit = true;
};
if ( ! quitter ) {
quitter = new AppQuit();
}
module.exports = quitter;