# @f/is-function

> Test whether a given value is a function.

Latest version **1.1.1** (published 2015-12-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install @f/is-function
pnpm add @f/is-function
yarn add @f/is-function
bun add @f/is-function
```

## 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.1.1 |
| Published | 2015-12-16 |
| First published | 2015-12-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | f |

## Links

- npm: https://www.npmjs.com/package/@f/is-function
- Repository: https://github.com/micro-js/is-function
- Homepage: https://github.com/micro-js/is-function#readme
- Issues: https://github.com/micro-js/is-function/issues
- npm.io page: https://npm.io/package/@f/is-function

## Recent versions

- 1.1.1 (latest) — 2015-12-16
- 1.1.0 — 2015-12-16

## README

# is-function

[![Build status][travis-image]][travis-url]
[![Git tag][git-image]][git-url]
[![NPM version][npm-image]][npm-url]
[![Code style][standard-image]][standard-url]

Test whether a given value is a function.

## Installation

    $ npm install @f/is-function

## Usage

```js
var isFunction = require('@f/is-function')

isFunction() // => false
isFunction(true) // => false
isFunction({}) // => false
isFunction(function () {}) // => true
```

## API

### isFunction(value)

- `value` - value to test

**Returns:** boolean

## License

MIT

[travis-image]: https://img.shields.io/travis/micro-js/is-function.svg?style=flat-square
[travis-url]: https://travis-ci.org/micro-js/is-function
[git-image]: https://img.shields.io/github/tag/micro-js/is-function.svg
[git-url]: https://github.com/micro-js/is-function
[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat
[standard-url]: https://github.com/feross/standard
[npm-image]: https://img.shields.io/npm/v/@f/is-function.svg?style=flat-square
[npm-url]: https://npmjs.org/package/@f/is-function

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