swh:1:snp:c53ab93da1867a0ee99951a3636bca865f9194df
Raw File
Tip revision: 72296e54cad6b105f901b82174f86837b4bcd414 authored by Luigi Pinca on 08 September 2021, 19:42:28 UTC
[dist] 8.2.2
Tip revision: 72296e5
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