Revision 7a0ad901c4515a9ad8d6805ad8ca7f669f91ac31 authored by Luigi Pinca on 23 April 2020, 19:21:03 UTC, committed by Luigi Pinca on 23 April 2020, 19:40:43 UTC
1 parent 49ed889
Raw File
browser.js
'use strict';

module.exports = function() {
  throw new Error(
    'ws does not work in the browser. Browser clients must use the native ' +
      'WebSocket object'
  );
};
back to top