We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21011da commit d448ea1Copy full SHA for d448ea1
src/firebase.ts
@@ -30,7 +30,7 @@ export default class FirebaseStorageAdapter extends BaseAdapter {
30
this.domainName = config.domainName;
31
}
32
33
- async exists(fileName: string, _targetDir: string): Promise<boolean> {
+ async exists(fileName: string): Promise<boolean> {
34
const targetDirectory = this.getTargetDir(this.basePath);
35
const filesExists = await this.bucket.file(join(targetDirectory, fileName)).exists();
36
return filesExists[0];
0 commit comments