Last active
May 22, 2023 12:56
-
-
Save MakowskiHubert/c1a54d7aaabf16258f0425ffc775b4da to your computer and use it in GitHub Desktop.
base-snippets-vsc
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
| "Print to console": { | |
| "scope": "javascript,typescript,javascriptreact,typescriptreact", | |
| "prefix": "clg", | |
| "body": [ | |
| "console.log('$1', $1);", | |
| "$2" | |
| ], | |
| "description": "Log output to console" | |
| }, | |
| "create const function": { | |
| "scope": "javascript,typescript,javascriptreact,typescriptreact", | |
| "prefix": "cons", | |
| "body": [ | |
| "const handle$1 = () => {", | |
| "$2", | |
| "};" | |
| ], | |
| "description": "create const function" | |
| }, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment