clean-up-path

Make paths absolute and normalize them.

MIT 1 个版本
安装
npm install clean-up-path
yarn add clean-up-path
pnpm add clean-up-path
bun add clean-up-path
README

node-clean-up-path

Build Status

Installation

npm install --save clean-up-path

Usage

let cleanUpPath = require("clean-up-path");

let absolutePath = cleanUpPath(somePath);

// Now safely use p as a symlink target, etc.

cleanUpPath(p) is similar to path.resolve(p), but it is faster for paths that are already resolved, and on Windows it turns LFS paths (c:\foo) into long UNC paths (\\?\c:\foo) to deal with path length limitations.

Unlike path.resolve, it does not guarantee that the returned path contains no .. or . segments.

Contributing

Clone this repo and run the tests like so:

npm install
npm test

Issues and pull requests are welcome. If you change code, be sure to re-run npm test. Oftentimes it's useful to add or update tests as well.

版本列表
1.0.0 2018-02-15