showing results for - "find out caller function in javascript"
Axel
03 Oct 2017
1const hello = () => {
2  console.log(new Error('I was called').stack)
3}
4const sello = () => {
5  hello()
6}
7sello()
similar questions
queries leading to this page
find out caller function in javascript