swh:1:snp:c53ab93da1867a0ee99951a3636bca865f9194df
Raw File
Tip revision: a3214d31b63acee8e31065be9f5ce3dd89203055 authored by Luigi Pinca on 07 January 2023, 19:27:46 UTC
[dist] 8.12.0
Tip revision: a3214d3
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