On 29 September 2015 at 15:41, Danny Dorfman <[email protected]> wrote: > Hi there, > > I need to write an application that run some mixed JavaScript code. What I > mean by mixed, is that some of the code is mine, and some is external. > My code will be calling some external code, but I would like to conceal the > call stack.
If your function is in strict mode, it cannot be discovered via the .caller property, nor does it have one itself. Any attempt to do so will either throw or return undefined. /Andreas -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
