Procházet zdrojové kódy

Renames sanitizeForFileSystem

main
Eric Amodio před 7 roky
rodič
revize
2d9cc030a5
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +1
    -1
      src/git/git.ts
  2. +1
    -1
      src/system/string.ts

+ 1
- 1
src/git/git.ts Zobrazit soubor

@ -134,7 +134,7 @@ export class Git {
const data = await Git.show(repoPath, fileName, branchOrSha, { encoding: 'binary' });
if (data === undefined) return undefined;
const suffix = Strings.truncate(Strings.sanitizeForFS(Git.isSha(branchOrSha) ? Git.shortenSha(branchOrSha) : branchOrSha), 50, '');
const suffix = Strings.truncate(Strings.sanitizeForFileSystem(Git.isSha(branchOrSha) ? Git.shortenSha(branchOrSha) : branchOrSha), 50, '');
const ext = path.extname(fileName);
return new Promise<string>((resolve, reject) => {
tmp.file({ prefix: `${path.basename(fileName, ext)}-${suffix}__`, postfix: ext },

+ 1
- 1
src/system/string.ts Zobrazit soubor

@ -99,7 +99,7 @@ export namespace Strings {
// Removes \ / : * ? " < > | and C0 and C1 control codes
const illegalCharsForFSRegEx = /[\\/:*?"<>|\x00-\x1f\x80-\x9f]/g;
export function sanitizeForFS(s: string, replacement: string = '_') {
export function sanitizeForFileSystem(s: string, replacement: string = '_') {
if (!s) return s;
return s.replace(illegalCharsForFSRegEx, replacement);
}

Načítá se…
Zrušit
Uložit