NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@hapi/hoek/lib/isPromise.js
2023-09-14 14:47:11 +08:00

10 lines
141 B
Java

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