# @f/map-array

> Map array.

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

## Install

```sh
npm install @f/map-array
pnpm add @f/map-array
yarn add @f/map-array
bun add @f/map-array
```

## 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.2.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 | 0 |
| Maintainers | f |

## Links

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

## Recent versions

- 1.2.1 (latest) — 2015-12-16
- 1.2.0 — 2015-12-16

## README

# map-array

[![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 array.

## Installation

    $ npm install @f/map-array

## Usage

```js
var map = require('@f/map-array')

map(addOne, [1, 2]) //  => [2, 3]

function addOne (v) {
  return v + 1
}

```

## API

### mapArray(fn, array)

- `fn` - mapping function
- `array` - array to map over

**Returns:** mapped array

## License

MIT

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

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