UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

13 lines (9 loc) 257 B
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