forked from ard/ruoyi-api

liusuyi
2024-04-28 d1ebb26ab19f83f32c5314771a5381db6f1b2a6d
1
2
3
4
5
6
7
8
9
10
'use strict';
 
var Driver = global.WebSocket || global.MozWebSocket;
if (Driver) {
    module.exports = function WebSocketBrowserDriver(url) {
        return new Driver(url);
    };
} else {
    module.exports = undefined;
}