Visual Studio Code – VS code extension for knowing where function is called from
I want VScode to inform where a defined function is being called from. file utils.js function counter(){ console.log('counter'); } export default counter; file index.js: import counter from './utils'; counter(); I want to know in counter function definition in utils.js that…