* Returns the current summary buffer as a string * * @returns {string} string of summary buffer
()
| 19629 | let first = true; |
| 19630 | for (const key in this.properties) { |
| 19631 | if (this.properties.hasOwnProperty(key)) { |
| 19632 | const val = this.properties[key]; |
| 19633 | if (val) { |
| 19634 | if (first) { |
| 19635 | first = false; |
| 19636 | } else { |
no outgoing calls
no test coverage detected