/opt/canhelp/node_modules/engine.io-client/build/cjs/contrib
NameSizeModeActions
has-cors.d.ts390644editdlrm
has-cors.js4220644editdlrm
parseqs.d.ts3090644editdlrm
parseqs.js9240644editdlrm
parseuri.d.ts490644editdlrm
parseuri.js26040644editdlrm
Edit: /opt/canhelp/node_modules/engine.io-client/build/cjs/contrib/has-cors.js (422B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hasCORS = void 0; // imported from https://github.com/component/has-cors let value = false; try { value = typeof XMLHttpRequest !== 'undefined' && 'withCredentials' in new XMLHttpRequest(); } catch (err) { // if XMLHttp support is disabled in IE then it will throw // when trying to create } exports.hasCORS = value;