2024-11-13 13:23:06 +01:00

10 lines
165 B
JavaScript

if (parseInt(process.env.restart_time) === 5) {
setInterval(function() {
console.log('Im stable mamen')
}, 1000)
}
else {
throw new Error('Ugly error')
}