* Composes a JSON string containing debug information about the current app * state useful for bug reports. * @return {string}
()
| 100 | * @return {string} |
| 101 | */ |
| 102 | debug () { |
| 103 | return JSON.stringify({ |
| 104 | version: this._config.version, |
| 105 | pipe: this.getPipe().serialize() |
| 106 | }) |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Returns pipe instance. |