serverless/lib/utils/fs/get-tmp-dir-path.js
2022-01-27 15:21:58 +01:00

18 lines
364 B
JavaScript

'use strict';
const os = require('os');
const path = require('path');
const crypto = require('crypto');
const tmpDirCommonPath = path.join(
os.tmpdir(),
'tmpdirs-serverless',
crypto.randomBytes(2).toString('hex')
);
function getTmpDirPath() {
return path.join(tmpDirCommonPath, crypto.randomBytes(8).toString('hex'));
}
module.exports = getTmpDirPath;