swh:1:snp:c53ab93da1867a0ee99951a3636bca865f9194df
Raw File
Tip revision: 67983cbba428d3b55c6f97d4cf17d29e32a113d0 authored by Luigi Pinca on 25 April 2020, 10:46:08 UTC
[dist] 7.2.5
Tip revision: 67983cb
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