path-parse
Node.js path.parse() ponyfill

path-parse downloads path-parse version path-parse license

path-parseSimilar Packages:
Npm Package Weekly Downloads Trend
3 Years
🌟 Show real-time usage chart on path-parse's README.md, just copy the code below.
## Usage Trend
[![Usage Trend of path-parse](https://npm-compare.com/img/npm-trend/THREE_YEARS/path-parse.png)](https://npm-compare.com/path-parse#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 Show GitHub stars trend chart on path-parse's README.md, just copy the code below.
## GitHub Stars Trend
[![GitHub Stars Trend of path-parse](https://npm-compare.com/img/github-trend/path-parse.png)](https://npm-compare.com/path-parse)
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
path-parse73,601,62056-84 years agoMIT
README for path-parse

path-parse Build Status

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