diff options
Diffstat (limited to 'lib/webtorrent.js')
-rw-r--r-- | lib/webtorrent.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/webtorrent.js b/lib/webtorrent.js index b72bc500d..41e60499f 100644 --- a/lib/webtorrent.js +++ b/lib/webtorrent.js | |||
@@ -1,7 +1,7 @@ | |||
1 | ;(function () { | 1 | ;(function () { |
2 | 'use strict' | 2 | 'use strict' |
3 | 3 | ||
4 | module.exports = function (args) { | 4 | function webtorrent (args) { |
5 | var WebTorrent = require('webtorrent') | 5 | var WebTorrent = require('webtorrent') |
6 | var ipc = require('node-ipc') | 6 | var ipc = require('node-ipc') |
7 | 7 | ||
@@ -88,4 +88,8 @@ | |||
88 | ipc.of[nodeKey].emit(processKey + '.exception', { exception: e }) | 88 | ipc.of[nodeKey].emit(processKey + '.exception', { exception: e }) |
89 | }) | 89 | }) |
90 | } | 90 | } |
91 | |||
92 | // --------------------------------------------------------------------------- | ||
93 | |||
94 | module.exports = webtorrent | ||
91 | })() | 95 | })() |