Skip to content

Instantly share code, notes, and snippets.

@jotafeldmann
Last active February 27, 2019 18:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jotafeldmann/c7b2fdba792851ad2133bd191813df78 to your computer and use it in GitHub Desktop.
Save jotafeldmann/c7b2fdba792851ad2133bd191813df78 to your computer and use it in GitHub Desktop.
JavaScript: prints the current called function name and arguments from inside the function. VS Code snippet.
{
/*
// Place your snippets for JavaScript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, ${id} and ${id:label} and ${1:label} for variables. Variables with the same id are connected.
// Example:
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
*/
"consolefn": {
"prefix": "console",
"body": [
"\n",
"// TODO: REMOVE BEFORE COMMIT",
"console.log('Called ', Error().stack.split('\\n')[1].trim(), arguments)",
"\n"
],
"description": "JavaScript: ES6 prints the current called function name from inside the function"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment