Name Last Update
..
.travis.yml Loading commit data...
README.md Loading commit data...
index.js Loading commit data...
index.min.js Loading commit data...
package.json Loading commit data...
test.js Loading commit data...
test.min.js Loading commit data...

path-parse Build Status

Node.js path.parse(pathString) ponyfill.

Ponyfill: A polyfill that doesn't overwrite the native method

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