# @pakal/arity

> Arity is package from Pakal library

Latest version **0.2.1** (published 2019-04-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install @pakal/arity
pnpm add @pakal/arity
yarn add @pakal/arity
bun add @pakal/arity
```

## Health

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

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.1 |
| Published | 2019-04-15 |
| First published | 2018-07-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 17.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Yisrael Eliev |
| Maintainers | yisraelx |
| Keywords | utils, utilities, modules, modular |

## Links

- npm: https://www.npmjs.com/package/@pakal/arity
- Repository: https://github.com/yisraelx/pakal
- Homepage: https://github.com/yisraelx/pakal#readme
- Issues: https://github.com/yisraelx/pakal/issues
- npm.io page: https://npm.io/package/@pakal/arity

## Recent versions

- 0.2.1 (latest) — 2019-04-15
- 0.2.0 — 2019-03-31
- 0.1.1 — 2018-07-14
- 0.1.0 — 2018-07-03

## README

# @pakal/arity
[![Source Code](https://img.shields.io/badge/%3C%2F%3E-source_code-blue.svg)](https://github.com/yisraelx/pakal/blob/master/modules/arity)
[![Version](https://img.shields.io/npm/v/@pakal/arity.svg)](https://www.npmjs.com/package/@pakal/arity)
[![MIT License](https://img.shields.io/npm/l/@pakal/arity.svg?color=yellow)](https://github.com/yisraelx/pakal/blob/master/LICENSE)
[![Bundle Size](https://img.shields.io/bundlephobia/min/@pakal/arity.svg?color=green)](https://bundlephobia.com/result?p=@pakal/arity)
[![TypeScript](https://img.shields.io/badge/100%25-TypeScript-blue.svg)](https://www.typescriptlang.org)

**Arity is package from Pakal library**

## Install
```sh
$ yarn add @pakal/arity
```
Or
```sh
$ npm install --save @pakal/arity
```

## Use
**Module**
```typescript
import {
  default as arity
} from '@pakal/arity';
```

**Browser**
```html
<script src="https://unpkg.com/@pakal/arity/bundle.umd.min.js"></script>
```
```typescript
let {
  arity
} = _;
```

**Examples**
```typescript
 let fn = arity((...args) => args, 3);

 fn('a', 'b', 'c', 'd'); // => ['a', 'b', 'c', 'd']
 fn('a', 'b', 'c'); // => ['a', 'b', 'c']
 fn('a', 'b'); // => ['a', 'b']
 fn.length; // => 3
```


## License
Copyright © [Yisrael Eliev](https://github.com/yisraelx),
Licensed under the [MIT license](https://github.com/yisraelx/pakal/blob/master/LICENSE).

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