4 lines
96 B
JavaScript
Raw Normal View History

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