File Explorer

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

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

platform.spec.ts398 B · 15 lines
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ import * as platform from './platform' test('platform.is_nodejs is correct', () => {    expect(platform.is_nodejs()).not.toEqual(platform.is_browser());}); test('platform.is_browser is correct', () => {    expect(platform.is_browser()).not.toEqual(platform.is_nodejs());});