lotus / node_modules /@hapi /hoek /lib /isPromise.js
k-l-lambda's picture
updated node_modules
4cadbaf
'use strict';
const internals = {};
module.exports = function (promise) {
return !!promise && typeof promise.then === 'function';
};