amis-rpc-design/node_modules/@hapi/hoek/lib/isPromise.js
2023-10-07 19:42:30 +08:00

10 lines
141 B
JavaScript
Executable File

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