Skip to content

Instantly share code, notes, and snippets.

@nblackburn
Created November 30, 2020 21:02
Show Gist options
  • Save nblackburn/a87c5187018dd511872638fbfd70ec72 to your computer and use it in GitHub Desktop.
Save nblackburn/a87c5187018dd511872638fbfd70ec72 to your computer and use it in GitHub Desktop.
Check if a value is a promise or not
module.exports = (value) => {
return value && typeof value.then === 'function' && typeof value.catch === 'function';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment