code-to-graph
code-to-graph copied to clipboard
Error when code variables are initialized without value;
Great project @crubier! 👏 I found one issue when code has variables declared without value, for example:
const myFunction = (x) => {
let y;
}
Will return the following error:
Cannot read property 'type' of null