All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.websocket-stream.ws-fallback.js Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version

var ws = null

if (typeof WebSocket !== 'undefined') {
  ws = WebSocket
} else if (typeof MozWebSocket !== 'undefined') {
  ws = MozWebSocket
} else if (typeof window !== 'undefined') {
  ws = window.WebSocket || window.MozWebSocket
}

module.exports = ws




© 2015 - 2025 Weber Informatics LLC | Privacy Policy