12345678910111213141516171819 |
- "use strict";
- var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.defaultBinaryType = exports.usingBrowserWebSocket = exports.WebSocket = exports.nextTick = void 0;
- const globalThis_js_1 = __importDefault(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.default.WebSocket || globalThis_js_1.default.MozWebSocket;
- exports.usingBrowserWebSocket = true;
- exports.defaultBinaryType = "arraybuffer";
|