File Explorer

/proc/thread-self/root/var/runtime/node_modules/@aws-sdk/node_modules/obliterator

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

iterator.d.ts434 B · 20 lines
type NextFunction<V> = () => IteratorResult<V>; export default class Iterator<V> implements IterableIterator<V> {   // Constructor  constructor(next: NextFunction<V>);   // Members  done: boolean;   // Well-known methods  next(): IteratorResult<V>;  [Symbol.iterator](): IterableIterator<V>;   // Static methods  static of<T>(...args: T[]): Iterator<T>;  static empty<T>(): Iterator<T>;  static is(value: any): boolean;}