Détail du package

realpath-missing

zkochan420.3kMIT1.1.0

Canonicalize by following every symlink in every component of the given name recursively, without requirements on components existence

readme

realpath-missing

realpath-missing resolves the absolute path of a file or directory by following every symbolic link in every component of the given name recursively, even if some of the components do not exist.

!--@shields('npm')--

npm version !--/@--

Installation

<npm|yarn|pnpm> add realpath-missing

Usage

'use strict'
const realpathMissing = require('realpath-missing')

console.log(await realpathMissing('package.json'))
//> /home/src/package.json

API

realpathMissing(path): Promise<path>

License

MIT © Zoltan Kochan

changelog

realpath-missing

1.1.0

Minor Changes

  • bba9985: graceful-fs and mz removed from dependencies.