Files
MOHPortalTest-AllAgents-All…/qwen/nodejs/node_modules/@hapi/hoek/lib/isPromise.js
2025-10-24 17:06:14 -05:00

10 lines
141 B
JavaScript
Executable File

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