utility.js 144 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 /** * 检查是否支持websoket */ function isSupport() { return !!window.WebSocket; } module.exports = { isSupport: isSupport }