UNPKG

unexpected

Version:
4 lines (3 loc) 161 B
module.exports = function isPendingPromise(obj) { return obj && typeof obj.then === 'function' && typeof obj.isPending === 'function' && obj.isPending(); };