Kuba e06e2380d1 RIFFMASTER: FRONTEND: list of roles correctly fetched, add remove songBtn only for admin and moderator 3 年之前
..
.github e06e2380d1 RIFFMASTER: FRONTEND: list of roles correctly fetched, add remove songBtn only for admin and moderator 3 年之前
test 44a43ea56d init commit (frontend and backend) 3 年之前
.eslintrc 44a43ea56d init commit (frontend and backend) 3 年之前
.nycrc 44a43ea56d init commit (frontend and backend) 3 年之前
CHANGELOG.md 44a43ea56d init commit (frontend and backend) 3 年之前
LICENSE 44a43ea56d init commit (frontend and backend) 3 年之前
README.md 44a43ea56d init commit (frontend and backend) 3 年之前
browser.js 44a43ea56d init commit (frontend and backend) 3 年之前
index.js 44a43ea56d init commit (frontend and backend) 3 年之前
package.json 44a43ea56d init commit (frontend and backend) 3 年之前

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