1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-13 04:14:36 +00:00

chore: lint fix

This commit is contained in:
2022-07-19 13:07:34 +05:00
parent 299512135d
commit 63dd6813c0
2 changed files with 6 additions and 2 deletions

View File

@@ -23,7 +23,9 @@ let _webout = '';
const weboutPath = '${
isWindows() ? weboutPath.replace(/\\/g, '\\\\') : weboutPath
}';
const _sasjs_tokenfile = '${isWindows() ? tokenFile.replace(/\\/g, '\\\\') : tokenFile }';
const _sasjs_tokenfile = '${
isWindows() ? tokenFile.replace(/\\/g, '\\\\') : tokenFile
}';
const _sasjs_username = '${preProgramVariables?.username}';
const _sasjs_userid = '${preProgramVariables?.userId}';
const _sasjs_displayname = '${preProgramVariables?.displayName}';