_report_server/src/7e2587330b8b91cdd49e0472a9e6f12f429d416c/app/node_modules/sucrase">sucrase 30f7226d9a first commit 2 gadi atpakaļ supports-preserve-symlinks-flag 30f7226d9a first commit 2 gadi atpakaļ tailwind-color-palette 30f7226d9a first commit 2 gadi atpakaļ tailwindcss 30f7226d9a first commit 2 gadi atpakaļ thenify 30f7226d9a first commit 2 gadi atpakaļ thenify-all 30f7226d9a first commit 2 gadi atpakaļ to-regex-range 30f7226d9a first commit 2 gadi atpakaļ tr46 30f7226d9a first commit 2 gadi atpakaļ ts-interface-checker 30f7226d9a first commit 2 gadi atpakaļ uglify-js 30f7226d9a first commit 2 gadi atpakaļ underscore 30f7226d9a first commit 2 gadi atpakaļ upper-case 30f7226d9a first commit 2 gadi atpakaļ util-deprecate 30f7226d9a first commit 2 gadi atpakaļ valid-data-url 30f7226d9a first commit 2 gadi atpakaļ web-resource-inliner 30f7226d9a first commit 2 gadi atpakaļ webidl-conversions 30f7226d9a first commit 2 gadi atpakaļ whatwg-url 30f7226d9a first commit 2 gadi atpakaļ wrap-ansi 30f7226d9a first commit 2 gadi atpakaļ wrappy 30f7226d9a first commit 2 gadi atpakaļ y18n 30f7226d9a first commit 2 gadi atpakaļ yallist 30f7226d9a first commit 2 gadi atpakaļ yaml 30f7226d9a first commit 2 gadi atpakaļ yargs 30f7226d9a first commit 2 gadi atpakaļ yargs-parser 30f7226d9a first commit 2 gadi atpakaļ .yarn-integrity 30f7226d9a first commit 2 gadi atpakaļ golf/tge - Gogs: Simplico Git Service

Keine Beschreibung

golf d8e79ace03 index commit vor 3 Jahren
..
LICENSE d8e79ace03 index commit vor 3 Jahren
README.md d8e79ace03 index commit vor 3 Jahren
index.js d8e79ace03 index commit vor 3 Jahren
old.js d8e79ace03 index commit vor 3 Jahren
package.json d8e79ace03 index commit vor 3 Jahren

README.md

fs.realpath

A backwards-compatible fs.realpath for Node v6 and above

In Node v6, the JavaScript implementation of fs.realpath was replaced with a faster (but less resilient) native implementation. That raises new and platform-specific errors and cannot handle long or excessively symlink-looping paths.

This module handles those cases by detecting the new errors and falling back to the JavaScript implementation. On versions of Node prior to v6, it has no effect.

USAGE

var rp = require('fs.realpath')

// async version
rp.realpath(someLongAndLoopingPath, function (er, real) {
  // the ELOOP was handled, but it was a bit slower
})

// sync version
var real = rp.realpathSync(someLongAndLoopingPath)

// monkeypatch at your own risk!
// This replaces the fs.realpath/fs.realpathSync builtins
rp.monkeypatch()

// un-do the monkeypatching
rp.unmonkeypatch()