Condensed trim_newline, thanks Yoann
This commit is contained in:
parent
0ee51601d8
commit
fc5b95af6d
|
@ -611,11 +611,7 @@ 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[s.length-1] == '\n') ? s.substring(0, s.length-1) : s;
|
||||||
return s.substring(0, s.length-1);
|
|
||||||
} else {
|
|
||||||
return s;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</textarea>
|
</textarea>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user