![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | test/ | 8 months ago | - | |
![]() | CHANGELOG.md | 8 months ago | 1.9K | |
![]() | LICENSE | 8 months ago | 1.0K | |
![]() | README.md | 8 months ago | 2.2K | |
![]() | browser.js | 8 months ago | 38 | |
![]() | index.js | 8 months ago | 293 | |
![]() | package.json | 8 months ago | 1.9K |
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