hrms-manual/node_modules/@hapi/hoek/lib/isPromise.js
2023-09-06 14:51:44 +07:00

9 lines
141 B
JavaScript
Executable file

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