npm.io
8.0.0 • Published 8 months ago

path-normalize

Licence
MIT
Version
8.0.0
Deps
0
Size
7 kB
Vulns
0
Weekly
0
Stars
8

path-normalize

Zero-dependency browser-oriented path.normalize.

path-normalize is different from normalize-path; normalize-path only handles slashes, while this lib is a browser-focused version of the POSIX path.normalize in Node.

path-normalize also differs from Node's path.normalize. path-normalize handles uri-encoded strings.

Most of this library is directly from Node's source.

Installation

npm i path-normalize

Usage

import normalize from 'path-normalize'
// or import { normalize } from 'path-normalize'
const normal = (somePath) => normalize(somePath)

Slightly more real-world example:

import normalize from 'path-normalize'

// imaginary client-side router api
router.route('/foo/*', (pathname) => {
  const normalized = normalize(pathname)
  if (normalized !== pathname) {
    router.redirect(normalized)
  } else {
    renderFoo()
  }
})

LICENSE