arg-deps

2.0.0 • Public • Published

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

Dependents (1)

Package Sidebar

Install

npm i arg-deps

Weekly Downloads

0

Version

2.0.0

License

MIT

Last publish

Collaborators

  • mattmueller