hexo/node_modules/is-promise/index.mjs

4 lines
154 B
JavaScript
Raw Permalink Normal View History

2023-10-03 11:14:36 +08:00
export default function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}