UNPKG

cloudworker-proxy

Version:
10 lines (7 loc) 200 B
// Whether given object is a promise "use strict"; module.exports = function (value) { return ( typeof value === "function" && typeof value.then === "function" && value.end !== value.done ); };