1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-02-13 10:42:49 +01:00
2020-11-17 21:44:32 +01:00

7 lines
201 B
JavaScript

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