dld_backend/node_modules/@hapi/hoek/lib/isPromise.js
2025-11-04 13:17:18 +05:30

10 lines
141 B
JavaScript

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