()
| 1014 | return true; |
| 1015 | } |
| 1016 | length() { |
| 1017 | return this.sources.reduce( |
| 1018 | (length, source) => length + source.content.length(), |
| 1019 | this.intro.length, |
| 1020 | ); |
| 1021 | } |
| 1022 | trimLines() { |
| 1023 | return this.trim('[\\r\\n]'); |
| 1024 | } |
nothing calls this directly
no outgoing calls
no test coverage detected