fix: bind trimCache to the instance (#10270)

This commit is contained in:
Alex Rudenko 2023-05-30 11:10:45 +02:00 committed by GitHub
parent a94dbceade
commit 50e72a4d11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,6 +129,7 @@ export class PuppeteerNode extends Puppeteer {
this.launch = this.launch.bind(this);
this.executablePath = this.executablePath.bind(this);
this.defaultArgs = this.defaultArgs.bind(this);
this.trimCache = this.trimCache.bind(this);
}
/**