Npm is outdated
one000mph opened this issue · 1 comments
one000mph commented
It seems that the version of esgraph in npm is outdated. In bin/esgraph.js we still have
function handleFunction(recurse) { functions.push(this); recurse(this.body); }
rather than the correct version (in github)
function handleFunction(node, recurse) { functions.push(node); recurse(node.body); }
Can you update this please? This error took me a long time to diagnose and it was really just a version issue. Thanks.
Swatinem commented
Just released 0.2.0 (and 0.2.1 because I forgot to pull, haha)