1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-09 21:30:05 +00:00

style: lint

This commit is contained in:
2022-03-25 18:11:20 +01:00
parent 1d1ef7179e
commit b0eb8b07a8
2 changed files with 7 additions and 2 deletions

View File

@@ -138,7 +138,9 @@ export class RequestClient implements HttpClient {
let log: string = ''
if (typeof log !== 'string') {
log = response.result.log.map((logLine: any) => logLine.line).join('\n')
log = response.result.log
.map((logLine: any) => logLine.line)
.join('\n')
}
sourceCode = parseSourceCode(log)