2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-09 13:10:27 +00:00
steffen-dotfiles/snippets/javascript.json
Steffen Rademacker 6873a08ffd Fixes
2023-04-08 22:45:12 +02:00

27 lines
631 B
JSON

{
"simple-log": {
"prefix": "cl",
"body": "console.log(${0:data});",
"description": "Simple logging with console.log()"
},
"simple-debugging": {
"prefix": "bug",
"body": "console.log(${0:data});",
"description": "Simple debugging with console.log()"
},
"console-table": {
"prefix": "ct",
"body": "console.table(${0:data});",
"description": "console.table with parameters"
},
"module-exports": {
"prefix": "mod",
"body": [
"export default () => {",
"\t${0:const sth = 0; }",
"};"
],
"description": "Export default anonymous arrow function"
}
}