@robotical/martyblocks
Version:
MartyBlocks based on Scratch for Marty the Robot by Robotical
14 lines (10 loc) • 321 B
JavaScript
;
const fs = require('fs');
const os = require('os');
const tempDirectorySymbol = Symbol.for('__RESOLVED_TEMP_DIRECTORY__');
if (!global[tempDirectorySymbol]) {
Object.defineProperty(global, tempDirectorySymbol, {
value: fs.realpathSync(os.tmpdir())
});
}
module.exports = global[tempDirectorySymbol];