GT2/Ejectable/node_modules/temp-dir/index.js

14 lines
234 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
'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];