swh:1:snp:c53ab93da1867a0ee99951a3636bca865f9194df
Raw File
Tip revision: 8a78f8770618cc5a1ade485a7445cb6d6f46e2f2 authored by Luigi Pinca on 15 July 2022, 11:33:27 UTC
[dist] 7.5.9
Tip revision: 8a78f87
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