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