botbook/node_modules/@hapi/hoek/lib/isPromise.js
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

9 lines
141 B
JavaScript
Executable file

'use strict';
const internals = {};
module.exports = function (promise) {
return !!promise && typeof promise.then === 'function';
};