Muqriz 48f16bfc3e initail first | пре 4 месеци | |
---|---|---|
.. | ||
.github | пре 4 месеци | |
test | пре 4 месеци | |
.eslintrc | пре 4 месеци | |
.nycrc | пре 4 месеци | |
CHANGELOG.md | пре 4 месеци | |
LICENSE | пре 4 месеци | |
README.md | пре 4 месеци | |
browser.js | пре 4 месеци | |
index.js | пре 4 месеци | |
package.json | пре 4 месеци |
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