1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-02-15 11:40:37 +01:00

7 lines
201 B
JavaScript
Raw Normal View History

2020-11-17 21:44:32 +01:00
module.exports = isPromise;
module.exports.default = isPromise;
function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}