私は 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)
関数 fn(){
/*
;
ユーザー名 |
:20px;">@name
zf123456 |
*/
}
var str_table = fn.heredoc();
console.log(str_table);