mirror of
https://gitlab.com/berufsschul-ae/blitzchat.git
synced 2025-01-03 18:17:39 +01:00
8 lines
175 B
JavaScript
8 lines
175 B
JavaScript
'use strict';
|
|
|
|
module.exports = function() {
|
|
throw new Error(
|
|
'ws does not work in the browser. Browser clients must use the native ' +
|
|
'WebSocket object'
|
|
);
|
|
};
|