(showAll: boolean = false)
| 84 | source_delay_delete: this.source_delay_delete, |
| 85 | }; |
| 86 | } |
| 87 | |
| 88 | exportStr(showAll: boolean = false): string { |
| 89 | let text = `${codeTag(this.task_id ?? "")}`; |
| 90 | text += ` - ${codeTag(this.key)} - `; |
| 91 | if (showAll) { |
| 92 | text += `${codeTag(this.cid)} - `; |
| 93 | } |
| 94 | text += `${htmlEscape(this.msg)}`; |
| 95 | return text; |
| 96 | } |
| 97 |
no test coverage detected