File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/axios/lib/helpers

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

isURLSameOrigin.js464 B · 17 lines
import platform from '../platform/index.js'; export default platform.hasStandardBrowserEnv  ? ((origin, isMSIE) => (url) => {      url = new URL(url, platform.origin);       return (        origin.protocol === url.protocol &&        origin.host === url.host &&        (isMSIE || origin.port === url.port)      );    })(      new URL(platform.origin),      platform.navigator && /(msie|trident)/i.test(platform.navigator.userAgent)    )  : () => true;