AeThex-Engine-Core/services/auth-service/node_modules/supports-preserve-symlinks-flag
mrpiglr 190b6b2eab
Some checks are pending
Build AeThex Engine / build-windows (push) Waiting to run
Build AeThex Engine / build-linux (push) Waiting to run
Build AeThex Engine / build-macos (push) Waiting to run
Build AeThex Engine / create-release (push) Blocked by required conditions
Deploy Docsify Documentation / build (push) Waiting to run
Deploy Docsify Documentation / deploy (push) Blocked by required conditions
chore: sync local changes to Forgejo
2026-03-13 00:37:06 -07:00
..
.github chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
test chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
.eslintrc chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
.nycrc chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
browser.js chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
CHANGELOG.md chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
index.js chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
LICENSE chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
package.json chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00
README.md chore: sync local changes to Forgejo 2026-03-13 00:37:06 -07:00

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