1'use strict'; 2 3const internals = {}; 4 5 6module.exports = function (promise) { 7 8 return !!promise && typeof promise.then === 'function'; 9}; 10 11