d48e5309f57e811e38322f">30f7226d9a first commit %!s(int64=2) %!d(string=hace) años sortablejs 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años source-map 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años source-map-js 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años string-width 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años strip-ansi 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años sucrase 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años supports-preserve-symlinks-flag 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años tailwind-color-palette 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años tailwindcss 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años thenify 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años thenify-all 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años to-regex-range 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años tr46 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años ts-interface-checker 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años uglify-js 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años underscore 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años upper-case 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años util-deprecate 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años valid-data-url 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años web-resource-inliner 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años webidl-conversions 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años whatwg-url 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años wrap-ansi 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años wrappy 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años y18n 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años yallist 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años yaml 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años yargs 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años yargs-parser 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años .yarn-integrity 30f7226d9a first commit %!s(int64=2) %!d(string=hace) años golf/tge - Gogs: Simplico Git Service

Sin descripción

golf d8e79ace03 index commit %!s(int64=2) %!d(string=hace) años
..
LICENSE d8e79ace03 index commit %!s(int64=2) %!d(string=hace) años
README.md d8e79ace03 index commit %!s(int64=2) %!d(string=hace) años
index.js d8e79ace03 index commit %!s(int64=2) %!d(string=hace) años
old.js d8e79ace03 index commit %!s(int64=2) %!d(string=hace) años
package.json d8e79ace03 index commit %!s(int64=2) %!d(string=hace) años

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