您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
zhoujie 72c6ce338e h5第一版 2 年前
..
.github Initial commit 2 年前
test h5第一版 2 年前
.eslintrc Initial commit 2 年前
.nycrc Initial commit 2 年前
CHANGELOG.md h5第一版 2 年前
LICENSE h5第一版 2 年前
README.md h5第一版 2 年前
browser.js h5第一版 2 年前
index.js h5第一版 2 年前
package.json h5第一版 2 年前

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