Skip to content

Instantly share code, notes, and snippets.

@rikukissa
Created October 18, 2020 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rikukissa/82c48150bf06d706fdb33052a2146584 to your computer and use it in GitHub Desktop.
Save rikukissa/82c48150bf06d706fdb33052a2146584 to your computer and use it in GitHub Desktop.
{
"Print to console": {
"prefix": "llog",
"body": [
"console.log($1);",
"$2"
],
"description": "Log output to console"
},
"Print to console with JSON.stringify": {
"prefix": "llog",
"body": [
"console.log(JSON.stringify($1, null, 2));",
"$2"
],
"description": "Log output to console"
},
"Function": {
"prefix": "ffunc",
"body": [
"function $1() {}"
],
"description": "Log output to console"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment