liangjiahao 8f813121f8 添加查看按钮的窗口 před 3 roky
..
.github fcedc92fa0 完成了基础 před 3 roky
test fcedc92fa0 完成了基础 před 3 roky
.eslintrc fcedc92fa0 完成了基础 před 3 roky
.nycrc fcedc92fa0 完成了基础 před 3 roky
CHANGELOG.md fcedc92fa0 完成了基础 před 3 roky
LICENSE fcedc92fa0 完成了基础 před 3 roky
README.md fcedc92fa0 完成了基础 před 3 roky
browser.js fcedc92fa0 完成了基础 před 3 roky
index.js fcedc92fa0 完成了基础 před 3 roky
package.json 8f813121f8 添加查看按钮的窗口 před 3 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