Skip to content

Commit

Permalink
this is never re-assigned
Browse files Browse the repository at this point in the history
  • Loading branch information
tgpholly committed Jul 13, 2023
1 parent 45479e2 commit 5498168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tooling/fileSmasher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import { readdirSync, statSync, readFileSync, writeFileSync } from "fs";

let tsFileData:Array<string> = new Array<string>();
const tsFileData:Array<string> = new Array<string>();

function readDir(nam:string) {
const files = readdirSync(nam);
Expand Down Expand Up @@ -63,4 +63,4 @@ for (const line of splitLines) {
//resultLines.push(line.replace("export class", "class").replace("export interface", "interface").replace("export enum", "enum"));
}

writeFileSync("./combined.ts", resultLines.join("\n"));
writeFileSync("./combined.ts", resultLines.join("\n"));

0 comments on commit 5498168

Please sign in to comment.