Created
June 27, 2020 20:39
-
-
Save RoyalHunt/f6e385cc85b7d9599767afbd93fee2a7 to your computer and use it in GitHub Desktop.
как найти файл который создает глобальную переменную
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
Берем файл который гарантированно выполяется самый-самый первый и пишем | |
Object.defineProperty(window, 'demo', { get() {}, set() { debugger; } }) | |
и как только кто-то определит (ок, на самом деле первый раз присвоит) переменную demo вас выкинет в дебаггер, где будет стек в нужный файл |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment