mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 09:53:09 +02:00
lint
This commit is contained in:
parent
4f249159d3
commit
9cc8b3656a
1 changed files with 3 additions and 1 deletions
|
@ -32,7 +32,9 @@ const shutdownListeners = [];
|
||||||
* @param {function(string)} fn Function to execute on shutdown.
|
* @param {function(string)} fn Function to execute on shutdown.
|
||||||
*/
|
*/
|
||||||
const processOnce = (signals, fn) => {
|
const processOnce = (signals, fn) => {
|
||||||
return signals.forEach(sig => process.once(sig, fn));
|
for (const sig of signals) {
|
||||||
|
process.once(sig, fn);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue