Created
April 27, 2017 06:21
-
-
Save sreepurnajasti/a34e0efffc1a6a317b89032ca21e5ac3 to your computer and use it in GitHub Desktop.
This is a program which causes high cpu consumption of Node production anomaly
This file contains 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
var obj; | |
var str = JSON.stringify(console); | |
while (true) { | |
obj = JSON.parse(str); | |
str = JSON.stringify(obj); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment