File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/node_modules/aws-crt/lib/browser

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

polyfills.ts428 B · 18 lines
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ import buffer from 'buffer';import process from 'process'; // Workaround to get mqtt-js working with Webpack 5if (window) {    (window as any).Buffer = buffer.Buffer;    (window as any).process = process;    // NodeJS global shim workaround for Angular    (window as any).global = window;} export {};