1 line
1.4 KiB
JSON
1 line
1.4 KiB
JSON
{"ast":null,"code":"'use strict';\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\n\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\nmodule.exports = Cancel;","map":{"version":3,"names":["Cancel","message","prototype","toString","__CANCEL__","module","exports"],"sources":["/Users/paolasanchez/Desktop/Pry4/Katoikia/katoikia-app/web-ui/sakai-react/node_modules/axios/lib/cancel/Cancel.js"],"sourcesContent":["'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n"],"mappings":"AAAA;AAEA;AACA;AACA;AACA;AACA;AACA;;AACA,SAASA,MAAT,CAAgBC,OAAhB,EAAyB;EACvB,KAAKA,OAAL,GAAeA,OAAf;AACD;;AAEDD,MAAM,CAACE,SAAP,CAAiBC,QAAjB,GAA4B,SAASA,QAAT,GAAoB;EAC9C,OAAO,YAAY,KAAKF,OAAL,GAAe,OAAO,KAAKA,OAA3B,GAAqC,EAAjD,CAAP;AACD,CAFD;;AAIAD,MAAM,CAACE,SAAP,CAAiBE,UAAjB,GAA8B,IAA9B;AAEAC,MAAM,CAACC,OAAP,GAAiBN,MAAjB"},"metadata":{},"sourceType":"script"} |