Last active
December 14, 2015 14:58
-
-
Save elgreg/5103937 to your computer and use it in GitHub Desktop.
The answers to google's io game - Spoiler alert!
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
Go to https://developers.google.com/events/io/ | |
In the console find the app.min.js, then find anything inside of the anonymous function that has this.patternMatcher. | |
Set a breakpoint. | |
Refresh. | |
var p = this.patternMatcher_.matchers_; | |
for(var _p in p){ if(p[_p].isPartial === false){ console.log(p[_p]); }}; | |
Tada. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment