UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

12 lines (11 loc) 344 B
export class RtfRevisionAuthors { constructor() { this.authors = []; } static { this.unknownAuthor = "Unknown"; } getAuthor(authorIndex) { if (authorIndex < 0 || authorIndex >= this.authors.length) return RtfRevisionAuthors.unknownAuthor; return this.authors[authorIndex]; } }