Created
August 8, 2023 10:42
-
-
Save tengla/f52c860859cf076bf262220d96925828 to your computer and use it in GitHub Desktop.
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
| const target = { | |
| warn(...args){ | |
| console.log('tick') | |
| console.log(this); | |
| console.log(...args) | |
| } | |
| }; | |
| const logger = new Proxy(target, { | |
| get (target, prop) { | |
| return target.warn | |
| } | |
| }); | |
| logger.warn("Test"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment