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