UNPKG

is-native

Version:

Checks if the given value is a native function.

48 lines (28 loc) 1.68 kB
# is-native > Checks if the given value is a native function. [![MIT License](https://img.shields.io/badge/license-MIT_License-green.svg?style=flat-square)](https://github.com/gearcase/is-native/blob/master/LICENSE) [![build:?](https://img.shields.io/travis/gearcase/is-native/master.svg?style=flat-square)](https://travis-ci.org/gearcase/is-native) [![coverage:?](https://img.shields.io/coveralls/gearcase/is-native/master.svg?style=flat-square)](https://coveralls.io/github/gearcase/is-native) ## Install ``` $ npm install --save is-native ``` ## Usage ```js var isNative = require('is-native'); isNative(Math.min); // => true isNative(console.log); // => true isNative(function () { console.log(123); }); // => false ``` ## Related - [to-source-code](https://github.com/gearcase/to-source-code.git) - Converts function to its source code. - [is-nil](https://github.com/gearcase/is-nil) - Checks if the given value is null or undefined. - [is-null](https://github.com/gearcase/is-null) - Checks if the given value is null. - [is-window](https://github.com/gearcase/is-window) - Checks if the given value is a window object. - [is-array-like](https://github.com/gearcase/is-array-like) - Checks if the given value is an array or an array-like object. - [is-index](https://github.com/gearcase/is-index) - Checks if the given value is a valid array-like index. - [is-length](https://github.com/gearcase/is-length) - Checks if the given value is a valid array-like length. ## Contributing Pull requests and stars are highly welcome. For bugs and feature requests, please [create an issue](https://github.com/gearcase/is-native/issues/new).