File Explorer

/var/runtime/node_modules/@aws-sdk/node_modules/axios/lib/cancel

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

CanceledError.js618 B · 23 lines
'use strict'; import AxiosError from '../core/AxiosError.js'; class CanceledError extends AxiosError {  /**   * A `CanceledError` is an object that is thrown when an operation is canceled.   *   * @param {string=} message The message.   * @param {Object=} config The config.   * @param {Object=} request The request.   *   * @returns {CanceledError} The created error.   */  constructor(message, config, request) {    super(message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request);    this.name = 'CanceledError';    this.__CANCEL__ = true;  }} export default CanceledError;