2.0.0 • Published 9 years ago

arg-deps v2.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
9 years ago

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-deps

Test

npm install
make test

License

MIT