snowtrack / snowfs

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
2 years ago2 years old
Documentation comment not found for function declaration startBenchmark
189  return new Date().getTime() - t0;
190}
191
192export async function startBenchmark(textureFilesize: number = BENCHMARK_FILE_SIZE, t: any = console): Promise<void> {193  let playground: string;
194  while (true) {
195    const desktop = join(os.homedir(), 'desktop');
Documentation comment not found for function declaration snowFsRestoreTexture
178  return new Date().getTime() - t0;
179}
180
181export async function snowFsRestoreTexture(repoPath: string, t: any = console): Promise<number> {182  t.log('Restore texture.psd...');
183
184  const repo = await Repository.open(repoPath);
Documentation comment not found for function declaration snowFsRmTexture
164  return new Date().getTime() - t0;
165}
166
167export async function snowFsRmTexture(repoPath: string, t: any = console): Promise<number> {168  t.log('Remove texture.psd...');
169
170  const repo = await Repository.open(repoPath);
Documentation comment not found for function declaration snowFsAddTexture
143  return new Date().getTime() - t0;
144}
145
146export async function snowFsAddTexture(repoPath: string, textureFilesize: number = BENCHMARK_FILE_SIZE, t: any = console): Promise<number> {147  if (fse.pathExistsSync(repoPath)) {
148    fse.rmdirSync(repoPath, { recursive: true });
149  }
Documentation comment not found for function declaration gitRestoreTexture
135  return new Date().getTime() - t0;
136}
137
138async function gitRestoreTexture(repoPath: string, t = console): Promise<number> {139  t.log('Restore texture.psd...');
140
141  const t0 = new Date().getTime();