Skip to content

Instantly share code, notes, and snippets.

@courajs
Created September 12, 2016 18:24
Show Gist options
  • Save courajs/e750239137ba6dfcd6290e25e80fbebd to your computer and use it in GitHub Desktop.
Save courajs/e750239137ba6dfcd6290e25e80fbebd to your computer and use it in GitHub Desktop.
Some evil...
Function.prototype.bodyString = function bodyString(){
var s = this.toString();
return s.substring(s.indexOf('\n'), s.lastIndexOf('\n'));
}
console.log(function(){/*
hey
indented
\n\\\///* $pecial ch&rs
*/}.bodyString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment