arg-deps

statically parse out properties from arguments in a function

Usage no npm install needed!

<script type="module">
  import argDeps from 'https://cdn.skypack.dev/arg-deps';
</script>

README

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