1
2
3
module.exports = function isPromise (maybePromise) {
  return maybePromise instanceof Promise
}