Created
February 22, 2012 03:38
-
-
Save tjanczuk/1881128 to your computer and use it in GitHub Desktop.
non-strict leaks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//'use strict'; | |
var n = function () { | |
console.log(new Error().stack) | |
console.log(arguments) | |
console.log(arguments.callee) | |
console.log(arguments.callee.caller) | |
console.log(Object.getOwnPropertyNames(arguments.callee.caller)) | |
console.log(arguments.callee.caller.prototype) | |
} | |
req.on('end', n) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment