util: Kill off rtrim() helper.

I am 99% sure we can rely on trimRight() and
trim() being available in all browsers that
we support.  I verified in FF.

This removes the util dependency from both
modules touched here.
This commit is contained in:
Steve Howell
2020-02-14 14:04:25 +00:00
committed by Tim Abbott
parent 9ab07d1038
commit c9a52411ae
4 changed files with 2 additions and 14 deletions

View File

@@ -1,4 +1,3 @@
const util = require("./util");
// Parsing routine that can be dropped in to message parsing
// and formats code blocks
//
@@ -116,7 +115,7 @@ exports.process_fenced_code = function (content) {
if (line === fence) {
this.done();
} else {
lines.push(util.rtrim(line));
lines.push(line.trimRight());
}
},