2.0.0 • Published 11 years ago
arg-deps v2.0.0
arg-deps
Statically inspect a function to get the properties of its arguments. Works with minified code.
Example
var deps = require('arg-deps');
var out = deps(function(props, arr) {
props.width = 700;
props.height = 900;
arr[0] = 20;
arr[1] = 40;
});
// [
// ['width', 'height'],
// [0, 1]
// ]Installation
npm install arg-depsTest
npm install
make testLicense
MIT