Fix typo in function name (#590)

This commit is contained in:
Minh Nguyen
2021-05-03 11:09:44 -04:00
committed by GitHub
parent fbdf27470c
commit d972090333
7 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ export async function createTempDirectory(): Promise<string> {
return dest
}
export function getArchiveFileSizeIsBytes(filePath: string): number {
export function getArchiveFileSizeInBytes(filePath: string): number {
return fs.statSync(filePath).size
}