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: 3140a47a1b71ce5107b3a774c75a2315d81d7c82 (plain)
1
2
3
4
5
6
7
8
export default (() => {
  try {
    return import('utp-native')
  } catch (err) {
    console.warn('WebTorrent: uTP not supported')
    return {}
  }
})()