Package Exports
- path-parse
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (path-parse) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
path-parse 
Node.js
path.parse(pathString)
ponyfill.
Install
$ npm install --save path-parse
Usage
var pathParse = require('path-parse');
pathParse('/home/user/dir/file.txt');
//=> {
// root : "/",
// dir : "/home/user/dir",
// base : "file.txt",
// ext : ".txt",
// name : "file"
// }
API
See path.parse(pathString)
docs.
pathParse(path)
pathParse.posix(path)
The Posix specific version.
pathParse.win32(path)
The Windows specific version.
License
MIT © Javier Blanco