is-promise.js 96 B

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