summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/is-promise/index.js
blob: ca2444c6f69540f83504b8f54f4518af0ffc4cd5 (plain)
1
2
3
4
5
module.exports = isPromise;

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