aboutsummaryrefslogtreecommitdiffhomepage
path: root/helpers/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/utils.js')
-rw-r--r--helpers/utils.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/helpers/utils.js b/helpers/utils.js
deleted file mode 100644
index d2c9ad8b2..000000000
--- a/helpers/utils.js
+++ /dev/null
@@ -1,16 +0,0 @@
1'use strict'
2
3var logger = require('./logger')
4
5var utils = {
6 cleanForExit: cleanForExit
7}
8
9function cleanForExit (webtorrent_process) {
10 logger.info('Gracefully exiting.')
11 process.kill(-webtorrent_process.pid)
12}
13
14// ---------------------------------------------------------------------------
15
16module.exports = utils