path-parse icon indicating copy to clipboard operation
path-parse copied to clipboard

Node.js path.parse() ponyfill

Results 8 path-parse issues
Sort by recently updated
recently updated
newest added

The MIT license specifically states that the text of the license must accompany the source code. This pull request adds a LICENSE file which contains the copyright header (copied from...

## Why - Add a test for a version of Node that is not currently tested by TravisCI. ## Notice - Currently, Actions is disabled in this repository, so the...

.travis.yml

Related to https://github.com/browserify/resolve/issues/169. It would be great if `path-parse` required 2fa for publishing (it may already). Maintainers can toggle this in the npm website ui for the package or [via...

Repro: ```js import path from 'node:path'; import pparse from 'path-parse'; console.log('/'); console.log(pparse.posix('/')); console.log(path.posix.parse('/')); console.log('foo/bar/'); console.log(pparse.posix('foo/bar/')); console.log(path.posix.parse('foo/bar/')); ``` Output: ``` / { root: '/', dir: '', base: '', ext: '', name:...