in cs-walkthrough/functions/reporter.js [85:92]
indentMultilineString(msg) { const lines = msg.split('\n'); for (let i = 0; i < lines.length; i++) { lines[i] = this.indent() + lines[i]; } return lines.join('\n'); }