Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2019-07-05 07:37:12 +0300
committerFeross Aboukhadijeh <feross@feross.org>2019-07-05 07:37:12 +0300
commit7d747efeca17a20298c51e2f393e38622c4053cd (patch)
treeb41b34e27ecb832c78104001af647fd784e9d5ad /lib/torrent.js
parent12760635bdfa76df1de7c89c174b01c2ab891a2f (diff)
'url.parse' was deprecated since v11.0.0. Use 'url.URL' constructor instead
Diffstat (limited to 'lib/torrent.js')
-rw-r--r--lib/torrent.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/torrent.js b/lib/torrent.js
index 8f667ff..39a725f 100644
--- a/lib/torrent.js
+++ b/lib/torrent.js
@@ -1,4 +1,4 @@
-/* global URL, Blob */
+/* global Blob */
const addrToIPPort = require('addr-to-ip-port')
const BitField = require('bitfield')