# is-native

> Checks if the given value is a native function.

Latest version **1.0.1** (published 2016-04-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-native
pnpm add is-native
yarn add is-native
bun add is-native
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2016-04-15 |
| First published | 2016-04-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | bubkoo |
| Maintainers | bubkoo |
| Keywords | is, check, checks, detect, native, function, fn, type |

## Links

- npm: https://www.npmjs.com/package/is-native
- Repository: https://github.com/gearcase/is-native
- Homepage: https://github.com/gearcase/is-native#readme
- Issues: https://github.com/gearcase/is-native/issues
- npm.io page: https://npm.io/package/is-native

## Dependencies (2)

- [is-nil](https://npm.io/package/is-nil.md) ^1.0.0
- [to-source-code](https://npm.io/package/to-source-code.md) ^1.0.0

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2016-04-15
- 1.0.0 — 2016-04-13
- 0.0.0 — 2016-04-13

## README

# 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).

---
_Source: https://npm.io/package/is-native · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
