isCancel.js 102 B

12345
  1. 'use strict';
  2. module.exports = function isCancel(value) {
  3. return !!(value && value.__CANCEL__);
  4. };