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