I think `var full = shrt = "";` is `var full = (shrt = "");` effectively, so `full = true`.
"no-implicit-coercion": "off",
"no-inline-comments": "off",
"no-loop-func": "off",
- "no-multi-assign": "off",
"no-negated-condition": "off",
"no-param-reassign": "off",
"no-redeclare": "off",
return (l > rcpt_lim) ? " … (" + l + ")" : "";
}
function format_rcpt(smtp, mime) {
- var full = shrt = "";
+ var full = "";
+ var shrt = "";
if (smtp) {
full = "[" + item.rcpt_smtp.join(", ") + "] ";
shrt = "[" + item.rcpt_smtp.slice(0, rcpt_lim).join(",​") + more("rcpt_smtp") + "]";