Last active
May 15, 2017 15:46
-
-
Save javarouka/b48edaa30a7a44f533fe49e73f310658 to your computer and use it in GitHub Desktop.
javarouka js code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isThenable(obj) { | |
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment