Newer
Older
vmk-demo-bot / admin / node_modules / is-promise / index.mjs
@eugene-sukhodolskiy eugene-sukhodolskiy 17 days ago 151 bytes init
export default function isPromise(obj) {
  return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}