Move from function to arrow function

This commit is contained in:
Convly 2023-01-25 18:51:03 +01:00
parent dcf70144c5
commit 6affdd3d66

View File

@ -27,7 +27,7 @@ const {
validateExcludeOnly,
} = require('../lib/commands/transfer/utils');
process.on('SIGINT', function () {
process.on('SIGINT', () => {
process.exit();
});