Swap-Aggregator-Subgraph/node_modules/axios/lib/cancel/isCancel.js
2022-07-03 07:27:35 +05:30

6 lines
102 B
JavaScript

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