()
| 720 | return true; |
| 721 | } |
| 722 | length() { |
| 723 | let chunk = this.firstChunk; |
| 724 | let length = 0; |
| 725 | do { |
| 726 | length += chunk.intro.length + chunk.content.length + chunk.outro.length; |
| 727 | } while ((chunk = chunk.next)); |
| 728 | return length; |
| 729 | } |
| 730 | trimLines() { |
| 731 | return this.trim('[\\r\\n]'); |
| 732 | } |
nothing calls this directly
no outgoing calls
no test coverage detected