Condensed trim_newline, thanks Yoann

This commit is contained in:
Suzanne Soy 2021-06-23 23:17:13 +01:00
parent 0ee51601d8
commit fc5b95af6d

View File

@ -611,11 +611,7 @@ references, we need to get rid of the newline first.</p>
<textarea>
// Removes the newline at the end of a string, if present.
function trim_newline(s) {
if (s[s.length-1] == '\n') {
return s.substring(0, s.length-1);
} else {
return s;
}
return (s[s.length-1] == '\n') ? s.substring(0, s.length-1) : s;
}
</textarea>