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

Açıklama Yok

Prach Pongpanich 6f337d0a21 install tailwind alpine daisyui 3 yıl önce
..
LICENSE 6f337d0a21 install tailwind alpine daisyui 3 yıl önce
README.md 6f337d0a21 install tailwind alpine daisyui 3 yıl önce
index.js 6f337d0a21 install tailwind alpine daisyui 3 yıl önce
old.js 6f337d0a21 install tailwind alpine daisyui 3 yıl önce
package.json 6f337d0a21 install tailwind alpine daisyui 3 yıl önce

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()