Small fixes

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

View File

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