"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultBinaryType = exports.usingBrowserWebSocket = exports.WebSocket = exports.nextTick = void 0; const globalThis_js_1 = require("../globalThis.js"); exports.nextTick = (() => { const isPromiseAvailable = typeof Promise === "function" && typeof Promise.resolve === "function"; if (isPromiseAvailable) { return cb => Promise.resolve().then(cb); } else { return (cb, setTimeoutFn) => setTimeoutFn(cb, 0); } })(); exports.WebSocket = globalThis_js_1.globalThisShim.WebSocket || globalThis_js_1.globalThisShim.MozWebSocket; exports.usingBrowserWebSocket = true; exports.defaultBinaryType = "arraybuffer";