You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
ecommerce_docker/frontend_server/node_modules/path-parse
sigonasr2 ff7945a554 Create Docker app with frontend,backend,database modules 5 years ago
..
.travis.yml Create Docker app with frontend,backend,database modules 5 years ago
LICENSE Create Docker app with frontend,backend,database modules 5 years ago
README.md Create Docker app with frontend,backend,database modules 5 years ago
index.js Create Docker app with frontend,backend,database modules 5 years ago
package.json Create Docker app with frontend,backend,database modules 5 years ago
test.js Create Docker app with frontend,backend,database modules 5 years ago

README.md

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