저는 PHP로 작업하는데 <<< 구문(heredoc 및 nowdoc)이 생각나므로 이름을 heredoc로 지정하겠습니다.
Function.prototype.heredoc = function() {
//이스케이프 없이 문자열을 저장하려면 함수 주석을 사용하세요.
var _str = this.toString(),
s_pos = _str.indexOf("/*") 2,
e_pos = _str.lastIndexOf("*/")
return (s_pos< 0 || e_pos<0) ? "" : _str.substring(s_pos, e_pos)
function fn(){
/*
*/
}
var str_table = fn.heredoc();
console.log(str_table)