File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/@aws-crypto/crc32c/build/module

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

aws_crc32c.d.ts222 B · 8 lines
import { Checksum, SourceData } from "@aws-sdk/types";export declare class AwsCrc32c implements Checksum {    private crc32c;    update(toHash: SourceData): void;    digest(): Promise<Uint8Array>;    reset(): void;}