caoge c760052ff9 机车状态修改 | пре 8 месеци | |
---|---|---|
.. | ||
.github | пре 8 месеци | |
test | пре 8 месеци | |
.eslintrc | пре 8 месеци | |
.nycrc | пре 8 месеци | |
CHANGELOG.md | пре 8 месеци | |
LICENSE | пре 8 месеци | |
README.md | пре 8 месеци | |
browser.js | пре 8 месеци | |
index.js | пре 8 месеци | |
package.json | пре 8 месеци |
Determine if the current node version supports the --preserve-symlinks
flag.
var supportsPreserveSymlinks = require('node-supports-preserve-symlinks-flag');
var assert = require('assert');
assert.equal(supportsPreserveSymlinks, null); // in a browser
assert.equal(supportsPreserveSymlinks, false); // in node < v6.2
assert.equal(supportsPreserveSymlinks, true); // in node v6.2+
Simply clone the repo, npm install
, and run npm test