# @f/over

> Map a collection of functions over a value

Latest version **1.0.0** (published 2016-02-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install @f/over
pnpm add @f/over
yarn add @f/over
bun add @f/over
```

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

## Links

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

## Dependencies (2)

- [@f/upon](https://npm.io/package/@f/upon.md) ^1.0.0
- [@f/map-array](https://npm.io/package/@f/map-array.md) ^1.2.1

## Recent versions

- 1.0.0 (latest) — 2016-02-08

## README

# over

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

Map a list of functions over a value

## Installation

    $ npm install @f/over

## Usage

```js
var over = require('@f/over')

over(4, [isEven, isOdd]) // -> [true, false]
```

## API

### over(value, fns)

- `value` - The value you want to pass to each function in `fns`
- `fns` - An array of functions you want to call with `value` as their first argument.

**Returns:** An array of the return value of each `fn(value)`.

## License

MIT

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

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