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

utp.js « lib - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2cde3f4ed05e985e0350cb0c5ab1e32958c64aa9 (plain)
1
2
3
4
5
6
7
8
module.exports = (() => {
  try {
    return require('utp-native')
  } catch (err) {
    console.warn('WebTorrent: uTP not supported')
    return {}
  }
})()