match-curriculum / node_modules / axios / lib / cancel / isCancel.js
isCancel.js
Raw
'use strict';

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