File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/smithy-client/dist-cjs

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 /.

defaults-mode.js867 B · 31 lines
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.loadConfigsForDefaultMode = void 0;const loadConfigsForDefaultMode = (mode) => {    switch (mode) {        case "standard":            return {                retryMode: "standard",                connectionTimeout: 3100,            };        case "in-region":            return {                retryMode: "standard",                connectionTimeout: 1100,            };        case "cross-region":            return {                retryMode: "standard",                connectionTimeout: 3100,            };        case "mobile":            return {                retryMode: "standard",                connectionTimeout: 30000,            };        default:            return {};    }};exports.loadConfigsForDefaultMode = loadConfigsForDefaultMode;