Je travaille en PHP, et cela me rappelle la syntaxe <<< (heredoc et nowdoc), alors appelons-la heredoc.
Function.prototype.heredoc = function() {
//Utilisez les commentaires de fonction pour stocker des chaînes sans vous échapper.
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);
}
fonction fn(){
/*
;
Nom d'utilisateur |
Mot de passe |
:20px;">@name
zf123456 |
*/
}
var str_table = fn.heredoc();
console.log(str_table);