npm.io
1.0.0 • Published 11 years ago

reverse-arguments

Licence
MIT
Version
1.0.0
Deps
0
Vulns
0
Weekly
0
Stars
1

reverse-arguments

Build Status npm version

Reverse the arguments passed to the function.

Installation

npm install reverse-arguments

Usage

Basic usage
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'

Keywords