REST Service for POPCORN - ILIAS
alex
2025-11-28 a380a465ce02059a630ef678fecd6666cbdf8f30
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
   exitDelayed,
}
 
/////////////////////////////////////////////////////////////////////////
 
function exitDelayed (delay = 750) {
   setTimeout(function () {
      process.exit()
   }, delay)
}