it looks like we have the same function get() definition twice:
The first time is in the dagre-d3.js library, line 14764 (ish)
Then again in load.js, at the bottom
This is probably leading to unintended side-effects, and we should change the load.js function name. Etytree calls the function to assign the return value to const source.
it looks like we have the same
function get()
definition twice:The first time is in the dagre-d3.js library, line 14764 (ish) Then again in load.js, at the bottom
This is probably leading to unintended side-effects, and we should change the load.js function name. Etytree calls the function to assign the return value to
const source
.