Fix dacpac utils function (#15702)

This commit is contained in:
Charles Gagnon
2021-06-14 08:38:29 -07:00
committed by GitHub
parent b413de153c
commit b8509d8b7c

View File

@@ -39,7 +39,7 @@ export function sanitizeStringForFilename(s: string): string {
// replace invalid characters with an underscore
let result = '';
for (let i = 0; i < s.length; ++i) {
result += this.isValidFilenameCharacter(s[i]) ? s[i] : '_';
result += isValidFilenameCharacter(s[i]) ? s[i] : '_';
}
return result;