index.js 234 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 '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];