Awesome
is-native
detect if a method is a native one
install
$ npm install bloody-isnative
require
var isNative = require("bloody-isnative")
api
isNative(fn) > boolean
detects if a method is a native one
example
isNative(alert) // true
isNative(function(){}) // false