summaryrefslogtreecommitdiffstats
path: root/node_modules/yargs/lib/is-promise.js
blob: 0516defa99dd7a5cfe33b70aff2ca223d965f69b (plain) (blame)
1
2
3
module.exports = function isPromise (maybePromise) {
  return maybePromise instanceof Promise
}