mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-11 14:20:05 +00:00
chore(*): change code style to use single quote
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
export const parseGeneratedCode = (log: string) => {
|
||||
const startsWith = "MPRINT"
|
||||
const startsWith = 'MPRINT'
|
||||
const isGeneratedCodeLine = (line: string) =>
|
||||
line.trim().startsWith(startsWith)
|
||||
const logLines = log.split("\n").filter(isGeneratedCodeLine)
|
||||
return logLines.join("\r\n")
|
||||
const logLines = log.split('\n').filter(isGeneratedCodeLine)
|
||||
return logLines.join('\r\n')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user