2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-18 12:39:44 +03:00
Files
axios/lib/cancel/isCancel.js
T
2016-09-21 18:47:37 -07:00

6 lines
102 B
JavaScript

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