mirror of
https://gitee.com/la-vie/console-pro-free.git
synced 2025-06-18 12:54:38 +00:00
6 lines
99 B
JavaScript
6 lines
99 B
JavaScript
|
'use strict';
|
||
|
|
||
|
export default function isCancel(value) {
|
||
|
return !!(value && value.__CANCEL__);
|
||
|
}
|