swh:1:snp:c53ab93da1867a0ee99951a3636bca865f9194df
Raw File
Tip revision: a370613fab74b82990582fa7728e130c5e87ee4c authored by Luigi Pinca on 07 February 2022, 19:36:52 UTC
[dist] 7.5.7
Tip revision: a370613
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