aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/is-promise/index.mjs
blob: bf9e99b5c8496c4a61e1f1a6269e84cb99dfa48f (plain)
1
2
3
export default function isPromise(obj) {
  return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}