Skip to content

Instantly share code, notes, and snippets.

@isRuslan
Created January 21, 2015 19:24
Show Gist options
  • Save isRuslan/ac4339ffa13619a5e630 to your computer and use it in GitHub Desktop.
Save isRuslan/ac4339ffa13619a5e630 to your computer and use it in GitHub Desktop.
Check if it is a promise?
/**
* Check if `value` is a promise
* Future "native" ES6 promise you can just ckeck:
* value instanceof Promise
*/
function check (value) {
return value && 'then' in value && typeof value.then == 'function';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment