• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1module.exports = function isPromise (maybePromise) {
2  return !!maybePromise && !!maybePromise.then && (typeof maybePromise.then === 'function')
3}
4