* @return {!Promise } A promise for the path to a temporary directory. * @see https://www.npmjs.org/package/tmp
()
| 179 | * @see https://www.npmjs.org/package/tmp |
| 180 | */ |
| 181 | function tmpDir() { |
| 182 | return checkedCall((callback) => tmp.dir({ unsafeCleanup: true }, callback)) |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * @param {{postfix: string}=} opt_options Temporary file options. |
nothing calls this directly
no test coverage detected