()
| 88 | * Get the absolute path of the temp directory. |
| 89 | */ |
| 90 | path() { |
| 91 | if (!this._path) { |
| 92 | throw new Error('You cannot access path() before calling create()'); |
| 93 | } |
| 94 | return this._path; |
| 95 | } |
| 96 | |
| 97 | /* |
| 98 | * Returns a callback that will catch an error, remove |
no outgoing calls
no test coverage detected