2021-12-05 10:25:22 +00:00
|
|
|
{
|
2023-04-08 20:45:12 +00:00
|
|
|
"simple-log": {
|
|
|
|
"prefix": "cl",
|
|
|
|
"body": "console.log(${0:data});",
|
|
|
|
"description": "Simple logging with console.log()"
|
|
|
|
},
|
2021-12-05 10:25:22 +00:00
|
|
|
"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; }",
|
2023-04-08 20:45:12 +00:00
|
|
|
"};"
|
2021-12-05 10:25:22 +00:00
|
|
|
],
|
|
|
|
"description": "Export default anonymous arrow function"
|
|
|
|
}
|
|
|
|
}
|