Skip to content

Instantly share code, notes, and snippets.

@jkohlin
Created June 1, 2022 08:41
Show Gist options
  • Save jkohlin/e14ee1e9e62b70e936c5538122b01cfe to your computer and use it in GitHub Desktop.
Save jkohlin/e14ee1e9e62b70e936c5538122b01cfe to your computer and use it in GitHub Desktop.
Returns the actual type of a value
function typeOf (value) {
return Object.prototype.toString.call(value)
.replace(/^\[object\s+([a-z]+)\]$/i, '$1')
.toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment