mirror of
https://git.mirrors.martin98.com/https://github.com/cyberman54/curl
synced 2025-08-22 16:19:07 +08:00
6 lines
102 B
JavaScript
6 lines
102 B
JavaScript
'use strict';
|
|
|
|
module.exports = function isCancel(value) {
|
|
return !!(value && value.__CANCEL__);
|
|
};
|