(path: string, key: string)
| 163 | etag?: string; |
| 164 | |
| 165 | constructor(path: string, key: string) { |
| 166 | this.path = path; |
| 167 | this.buffer = fs.readFileSync(path); |
| 168 | this.key = key; |
| 169 | } |
| 170 | |
| 171 | getKey() { |
| 172 | return this.key; |
nothing calls this directly
no outgoing calls
no test coverage detected