Files
2023-07-12 16:31:19 +01:00

6 lines
165 B
JavaScript
Executable File

module.exports = isPromise;
function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}