chensenlai 10988628a0 语音房项目初始化 | 5 년 전 | |
---|---|---|
.. | ||
index.js | 5 년 전 | |
license | 5 년 전 | |
package.json | 5 년 전 | |
readme.md | 5 년 전 |
Node.js
os.tmpdir()
ponyfillPonyfill: A polyfill that doesn't overwrite the native method
Use this instead of require('os').tmpdir()
to get a consistent behaviour on different Node.js versions (even 0.8).
This is actually taken from io.js 2.0.2 as it contains some fixes that haven't bubbled up to Node.js yet.
$ npm install --save os-tmpdir
var osTmpdir = require('os-tmpdir');
osTmpdir();
//=> /var/folders/m3/5574nnhn0yj488ccryqr7tc80000gn/T
See the os.tmpdir()
docs.
MIT © Sindre Sorhus