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