mirror of
https://gitlab.com/berufsschul-ae/blitzchat.git
synced 2025-01-08 20:27:40 +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'
|
|
);
|
|
};
|