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
typo
alex
2025-12-08
82f18bd37dae283be0940416f3ab7684ad56044c
[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)
}