codeql-action/node_modules/temp-dir/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 строки
162 B
JavaScript
Исходник Обычный вид История

2023-01-18 23:50:03 +03:00
import {promises as fs} from 'node:fs';
import os from 'node:os';
2020-05-04 20:50:13 +03:00
2023-01-18 23:50:03 +03:00
const temporaryDirectory = await fs.realpath(os.tmpdir());
2020-05-04 20:50:13 +03:00
2023-01-18 23:50:03 +03:00
export default temporaryDirectory;