Is it possible to see the callee/caller of a function when use strict is enabled?
use strict
You can get a stack trace using:
console.trace()
but this is likely not useful if you need to do something with the caller.
See https://developer.mozilla.org/en-US/docs/Web/API/Console/trace