You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
493 B
JSON

{
"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"
}
}