Package Exports
- manage-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 (manage-arguments) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
manage-arguments

Prevents arguments leakage - managing arguments. See Optimization killers by @petkaantonov.
Install
npm i manage-arguments --save
npm test
Usage
For more use-cases see the tests
var manageArguments = require('manage-arguments')
function fixture () {
return manageArguments(arguments)
}
console.log(fixture(1, 2, 3, {foo: 'bar'}))
//=> [ 1, 2, 3, { foo: 'bar' } ]
See also
- bluebird: Full featured Promises/A+ implementation with exceptionally good performance
- handle-arguments: Handles given Arguments object - return separatly last argument (commonly callback) and other arguments as… more
- handle-callback: Initial step for creating hybrid APIs, used by
hybridify
. Handle callback in promise - give… more - hybridify: Building hybrid APIs. You can use both callback and promise in same time. Like… more
- Optimization killers by @petkaantonov
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue. But before doing anything, please read the CONTRIBUTING.md guidelines.