Created
October 26, 2021 15:19
-
-
Save fysherman/e9defb60b7da779ff0896ef181334a75 to your computer and use it in GitHub Desktop.
Check if data is a function
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 isFunction(obj) { | |
return obj && {}.toString.call(obj) === '[object Function]'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment