summaryrefslogtreecommitdiffstats
path: root/node_modules/mongoose/lib/helpers/isPromise.js
blob: d6db2608cc9e872401968c014286f2530dff550a (plain) (blame)
1
2
3
4
5
6
'use strict';
function isPromise(val) {
  return !!val && (typeof val === 'object' || typeof val === 'function') && typeof val.then === 'function';
}

module.exports = isPromise;