Files
site/nova-components/NovaLeader/node_modules/temp-dir/index.js
2025-04-21 16:03:20 +02:00

14 lines
234 B
JavaScript
Vendored

'use strict';
const fs = require('fs');
const os = require('os');
const ID = '__RESOLVED_TMP_DIR__';
if (!global[ID]) {
Object.defineProperty(global, ID, {
value: fs.realpathSync(os.tmpdir())
});
}
module.exports = global[ID];