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(){
/*
*/
}
varstr_table =fn. heredoc();
console.log(str_table);