mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
24 lines
649 B
Markdown
24 lines
649 B
Markdown
---
|
|
sidebar_label: PuppeteerNode.trimCache
|
|
---
|
|
|
|
# PuppeteerNode.trimCache() method
|
|
|
|
Removes all non-current Firefox and Chrome binaries in the cache directory identified by the provided Puppeteer configuration. The current browser version is determined by resolving PUPPETEER_REVISIONS from Puppeteer unless `configuration.browserRevision` is provided.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class PuppeteerNode {
|
|
trimCache(): Promise<void>;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|
|
|
|
## Remarks
|
|
|
|
Note that the method does not check if any other Puppeteer versions installed on the host that use the same cache directory require the non-current binaries.
|