# reverse-arguments

> reverse the arguments passed to a function.

Latest version **1.0.0** (published 2015-01-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install reverse-arguments
pnpm add reverse-arguments
yarn add reverse-arguments
bun add reverse-arguments
```

## 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 | 2015-01-09 |
| First published | 2015-01-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | stoeffel |
| Maintainers | schtoeffel |
| Keywords | function, arguments |

## Links

- npm: https://www.npmjs.com/package/reverse-arguments
- Repository: http://github.com/stoeffel/reverse-arguments
- Issues: http://github.com/stoeffel/reverse-arguments/issues
- npm.io page: https://npm.io/package/reverse-arguments

## Recent versions

- 1.0.0 (latest) — 2015-01-09

## README

reverse-arguments
================

[![Build Status](https://travis-ci.org/stoeffel/reverse-arguments.svg)](https://travis-ci.org/stoeffel/reverse-arguments) [![npm version](https://badge.fury.io/js/reverse-arguments.svg)](http://badge.fury.io/js/reverse-arguments)
> Reverse the arguments passed to the function.

Installation
------------

`npm install reverse-arguments`

Usage
-----

### Basic usage

```js
var reverse = require('reverse-arguments');

function join() {
  return Array.prototype.slice.call(arguments).join(',');
}

join(1, 2, 3); // => '1,2,3'
reverse(join)(1, 2, 3); // => '3,2,1'
```

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