Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AlexKardone/4bfd2daad6105b2b362f9a5901fc61cd to your computer and use it in GitHub Desktop.
Save AlexKardone/4bfd2daad6105b2b362f9a5901fc61cd to your computer and use it in GitHub Desktop.
Check is object
function isObject(obj) {
return obj?.constructor.name === 'Object';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment