Bachir Soussi Chiadmi cefd1c2ad0 updated sys and created publi | 6 年之前 | |
---|---|---|
.. | ||
index.js | 7 年之前 | |
license | 7 年之前 | |
package.json | 6 年之前 | |
readme.md | 7 年之前 |
Node.js
os.tmpdir()
ponyfill
Use this instead of require('os').tmpdir()
to get a consistent behavior on different Node.js versions (even 0.8).
$ npm install --save os-tmpdir
const osTmpdir = require('os-tmpdir');
osTmpdir();
//=> '/var/folders/m3/5574nnhn0yj488ccryqr7tc80000gn/T'
See the os.tmpdir()
docs.
MIT © Sindre Sorhus