From 3071764c42c63f47cd76d80b5b90fe280ac9f0ab Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 14 Apr 2022 17:43:06 +0200 Subject: Fetcher --- .../fetcher/node_modules/axios/lib/cancel/Cancel.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 includes/fetcher/node_modules/axios/lib/cancel/Cancel.js (limited to 'includes/fetcher/node_modules/axios/lib/cancel/Cancel.js') diff --git a/includes/fetcher/node_modules/axios/lib/cancel/Cancel.js b/includes/fetcher/node_modules/axios/lib/cancel/Cancel.js new file mode 100644 index 0000000..e0de400 --- /dev/null +++ b/includes/fetcher/node_modules/axios/lib/cancel/Cancel.js @@ -0,0 +1,19 @@ +'use strict'; + +/** + * A `Cancel` is an object that is thrown when an operation is canceled. + * + * @class + * @param {string=} message The message. + */ +function Cancel(message) { + this.message = message; +} + +Cancel.prototype.toString = function toString() { + return 'Cancel' + (this.message ? ': ' + this.message : ''); +}; + +Cancel.prototype.__CANCEL__ = true; + +module.exports = Cancel; -- cgit