# @f/is-functor

> Check if looks like a functor (implments map).

Latest version **1.0.0** (published 2016-01-27) · MIT license · 0 weekly downloads

## Install

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

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

## Links

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

## Dependencies (1)

- [@f/is-function](https://npm.io/package/@f/is-function.md) ^1.1.1

## Recent versions

- 1.0.0 (latest) — 2016-01-27

## README

# is-functor

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

Check if looks like a functor (implments map).

## Installation

    $ npm install @f/is-functor

## Usage

```js
var isFunctor = require('@f/is-functor')

isFunctor([]) // => true
isFunctor({}) // => false
isFunctor(Object.create({map: function () {}})) // => true
```

## API

### isFunctor(ob)

- `obj` - object to check

**Returns:** boolean indicating whether `obj` is a functor

## License

MIT

[travis-image]: https://img.shields.io/travis/micro-js/is-functor.svg?style=flat-square
[travis-url]: https://travis-ci.org/micro-js/is-functor
[git-image]: https://img.shields.io/github/tag/micro-js/is-functor.svg
[git-url]: https://github.com/micro-js/is-functor
[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-functor.svg?style=flat-square
[npm-url]: https://npmjs.org/package/@f/is-functor

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