dashboard
repositories
filestore
activity
search
login
globus
/
globus-ilias-rest
REST Service for POPCORN - ILIAS
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
GS-2333
alex
2025-11-28
a380a465ce02059a630ef678fecd6666cbdf8f30
[globus/globus-ilias-rest.git]
/
lib
/
tools.js
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
exitDelayed,
}
/////////////////////////////////////////////////////////////////////////
function exitDelayed (delay = 750) {
setTimeout(function () {
process.exit()
}, delay)
}