UNPKG

201 BJavaScriptView Raw
1module.exports = isPromise;
2module.exports.default = isPromise;
3
4function isPromise(obj) {
5 return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
6}