Skip to content

Instantly share code, notes, and snippets.

@ochronus
Created August 18, 2014 06:56
Show Gist options
  • Save ochronus/ff046314a7ea62f01213 to your computer and use it in GitHub Desktop.
Save ochronus/ff046314a7ea62f01213 to your computer and use it in GitHub Desktop.
Check if a JS function is native
function isNative(fn) {
return (/\{\s*\[native code\]\s*\}/).test('' + fn);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment