tree-sitter-stack-graphs-javascript 0.3.0

Stack graphs definition for JavaScript using tree-sitter-javascript
Documentation
let x = { foo: 1 };

function f() {
   return arguments;
}

f(x)[0].foo;
//      ^ defined: 1

function* g() {
  return arguments;
}

g(x)[0].foo;
//      ^ defined: 1

let h = function () {
   return arguments;
};

h(x)[0].foo;
//      ^ defined: 1