path-parse

Node.js path.parse() ponyfill

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

path-parse類似パッケージ:

npmのダウンロードトレンド

3 年
🌟 path-parseのREADME.mdにリアルタイム使用チャートを表示するには、以下のコードをコピーしてください。
## 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

🌟 path-parseのREADME.mdにGitHub Starsトレンドチャートを表示するには、以下のコードをコピーしてください。
## 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)

統計詳細

パッケージ
ダウンロード数
Stars
サイズ
Issues
公開日時
ライセンス
path-parse056-85年前MIT

path-parse のREADME

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