REST Service for POPCORN - ILIAS
Ahmed Hamouda
2026-03-30 3dc8dc57b32b22284131396f7e4f880c813180be
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
   exitDelayed,
}
 
/////////////////////////////////////////////////////////////////////////
 
function exitDelayed (delay = 750) {
   setTimeout(function () {
      process.exit()
   }, delay)
}