FRE-709: Document duplicate recovery wake - FRE-635 already recovered via FRE-708
This commit is contained in:
30
node_modules/cachedir/readme.md
generated
vendored
Normal file
30
node_modules/cachedir/readme.md
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
# node-cachedir
|
||||
|
||||
Provides a directory where the OS wants you to store cached files.
|
||||
|
||||
## Installation
|
||||
|
||||
```sh
|
||||
npm install --save cachedir
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```javascript
|
||||
const cachedir = require('cachedir')
|
||||
|
||||
console.log(cachedir('myapp'))
|
||||
// e.g.
|
||||
//=> '/Users/linus/Library/Caches/myapp'
|
||||
//=> '/home/linus/.cache/myapp'
|
||||
//=> 'C:\Users\linus\AppData\Local\myapp\Cache'
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### `cachedir(id)`
|
||||
|
||||
- `id` (`string`, required)
|
||||
- returns `string`
|
||||
|
||||
Return path to an appropriate place to store cache files.
|
||||
Reference in New Issue
Block a user