1
0
mirror of https://github.com/titanscouting/tra-analysis.git synced 2025-03-17 19:05:19 +00:00
2019-01-06 13:14:45 -06:00

6 lines
102 B
JavaScript

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