Rename MessageBodyBuilder to MessageBodyBuilder

Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
RMidhunSuresh 2021-05-10 19:50:26 +05:30
parent bbeb0a5764
commit 06a6cae4af
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
import { MessageObjectFormat } from "./MessageObjectFormat.js";
import { MessageBodyBuilder } from "./MessageBodyBuilder.js";
export class Linkifier {
@ -8,7 +8,7 @@ export class Linkifier {
constructor(text) {
this._text = text;
this._curr = 0;
this._message = new MessageObjectFormat();
this._message = new MessageBodyBuilder();
}
/**
@ -41,7 +41,7 @@ export class Linkifier {
/**
* Splits message text into parts (text, newline and links)
* @returns {MessageObjectFormat} Object representation of chat message
* @returns {MessageBodyBuilder} Object representation of chat message
*/
linkify() {
const regex = /(?:https|http|ftp):\/\/[a-zA-Z0-9:.\[\]#-]+(?:\/[^\s]*[^\s.,?!]|[^\s\u{80}-\u{10ffff}.,?!])/gui
@ -64,7 +64,7 @@ export function tests() {
}
function test(assert, input, output) {
output = new MessageObjectFormat(output);
output = new MessageBodyBuilder(output);
input = linkify(input);
assert.deepEqual(input, output);
}

View file

@ -1,4 +1,4 @@
export class MessageObjectFormat {
export class MessageBodyBuilder {
constructor(message = []) {
this._root = message;