Skip to content

Instantly share code, notes, and snippets.

@vadimbogomazov
Last active October 17, 2019 17:57
Show Gist options
  • Save vadimbogomazov/3e501661f985a43f1d42a91d360acc81 to your computer and use it in GitHub Desktop.
Save vadimbogomazov/3e501661f985a43f1d42a91d360acc81 to your computer and use it in GitHub Desktop.
Check object function
/**
* Check object function
* @param {val}
* @return {Boolean}
*/
export const isObject = val => {
if (val === null) {
return false;
}
return ((typeof val === 'function') || (typeof val === 'object'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment