github-pages-deploy-action/node_modules/path-parse
2020-03-31 08:57:48 -04:00
..
.travis.yml Dependencies Required 2020-01-28 00:07:56 -05:00
index.js Dependencies Required 2020-01-28 00:07:56 -05:00
LICENSE Dependencies Required 2020-01-28 00:07:56 -05:00
package.json 3.4.3 Dependencies 2020-03-31 08:57:48 -04:00
README.md Dependencies Required 2020-01-28 00:07:56 -05:00
test.js Dependencies Required 2020-01-28 00:07:56 -05:00

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