Bakhtina Sofya b84cb877be 1st comm | пре 2 недеља | |
---|---|---|
.. | ||
.github | пре 2 недеља | |
test | пре 2 недеља | |
.eslintrc | пре 2 недеља | |
.nycrc | пре 2 недеља | |
CHANGELOG.md | пре 2 недеља | |
LICENSE | пре 2 недеља | |
README.md | пре 2 недеља | |
browser.js | пре 2 недеља | |
index.js | пре 2 недеља | |
package.json | пре 2 недеља |
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