Package Exports
- reverse-arguments
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (reverse-arguments) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
reverse-arguments
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'