Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Idea: Make it possible to deep watch an object #27

Open
mattzeunert opened this issue Apr 28, 2016 · 2 comments
Open

Idea: Make it possible to deep watch an object #27

mattzeunert opened this issue Apr 28, 2016 · 2 comments
Assignees

Comments

@mattzeunert
Copy link
Owner

var obj = {
    hello: {
        world: {
            cake: 5
        }
    }
}
debugDeepPropertyAccess(obj, "hello");
obj.hello.world.cake = 8; // hits breakpoint

Would have to go through it recursively... And if new keys are added I think I'd have to use Proxy objects.

@gidztech
Copy link
Contributor

gidztech commented May 1, 2016

I would like to take a look at this one first - a good for me.

@mattzeunert
Copy link
Owner Author

Tricky to do, but go ahead and have fun.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants