Snippets for the code

This commit is contained in:
Skylar Grant 2022-12-06 17:08:32 -05:00
parent 579a570d93
commit f85d9ab928
1 changed files with 7 additions and 1 deletions

View File

@ -19,7 +19,13 @@
"Log if in Debug mode": {
"scope": "javascript",
"prefix": "log",
"body": "if (process.env.DEBUG == 'true') console.log('$1');\n$0",
"body": "if (config.debugMode) console.log($1);\n$0",
"description": "Log output to console if in debug mode"
},
"Run only on Pi": {
"scope": "javascript",
"prefix": "onpi",
"body": "if (process.env.ONPI == 'true') {\n\t$1\n} else {\n\t$2\n}$0",
"description": "Run something only if the ONPI env var is set"
}
}