Files
2026-02-17 15:50:53 +00:00

5 lines
108 B
JavaScript

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