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