rsuite-theme
Version:
The suite theme for pagurian
16 lines (10 loc) • 304 B
JavaScript
;
module.exports = trimTrailingLines;
var line = '\n';
/* Remove final newline characters from `value`. */
function trimTrailingLines(value) {
var val = String(value);
var index = val.length;
while (val.charAt(--index) === line) { /* empty */ }
return val.slice(0, index + 1);
}