NeahNew/node_modules/@hapi/hoek/lib/isPromise.js
2025-05-06 22:43:27 +02:00

10 lines
141 B
JavaScript
Executable File

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