clean-up-path

Make paths absolute and normalize them.

Usage no npm install needed!

<script type="module">
  import cleanUpPath from 'https://cdn.skypack.dev/clean-up-path';
</script>

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.