Home

Awesome

is-native

detect if a method is a native one

browser support

Build Status

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