all-of-frontend/node_modules/axios/lib/cancel/isCancel.js
2021-03-22 21:59:51 +08:00

6 lines
102 B
JavaScript

'use strict';
module.exports = function isCancel(value) {
return !!(value && value.__CANCEL__);
};