mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2025-02-16 16:20:37 -07:00
9 lines
175 B
JavaScript
9 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'
|
||
|
);
|
||
|
};
|