A bot used for https://code-your-snake.codingmaster398.repl.co/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
724 B
16 lines
724 B
"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";
|
|
|