Bez popisu

golf 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
..
.github 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
test 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
.eslintrc 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
.nycrc 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
CHANGELOG.md 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
LICENSE 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
README.md 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
browser.js 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
index.js 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky
package.json 77628cf8bf first comm %!s(int64=2) %!d(string=před) roky

README.md

node-supports-preserve-symlinks-flag Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Determine if the current node version supports the --preserve-symlinks flag.

Example

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+

Tests

Simply clone the repo, npm install, and run npm test