Package Exports
- parse-filepath
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (parse-filepath) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
parse-filepath

Pollyfill for node.js
path.parse, parses a filepath into an object.
You might also be interested in global-prefix.
Install
Install with npm:
$ npm install parse-filepath --saveUsage
var parsePath = require('parse-filepath');
parsePath(filepath);This can be used as a polyfill for the native node.js path.parse() method, and it also adds a few properties:
path: the original filepathisAbsolute: (getter) true if the given path is absoluteabsolute: (getter) fully resolved, absolute filepathdirname: alias fordirbasename: alias forbaseextname: alias forextstem: alias forname
Example
var parsePath = require('parse-filepath');
console.log(parsePath('foo/bar/baz/index.js'));Returns:
{ root: '',
dir: 'foo/bar/baz',
base: 'index.js',
ext: '.js',
name: 'index',
// aliases
extname: '.js',
basename: 'index.js',
dirname: 'foo/bar/baz',
stem: 'index',
// original path
path: 'foo/bar/baz/index.js',
// getters
absolute: [Getter/Setter],
isAbsolute: [Getter/Setter] }Related projects
You might also be interested in these projects:
- global-prefix: Get the npm global path prefix. | homepage
- is-absolute: Polyfill for node.js
path.isAbolute. Returns true if a file path is absolute. | homepage - is-relative: Returns
trueif the path appears to be relative. | homepage - relative: Get the relative filepath from path A to path B. Calculates from file-to-directory, file-to-file, directory-to-file,… more | homepage
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Building docs
Generate readme and API documentation with verb:
$ npm install verb && npm run docsOr, if verb is installed globally:
$ verbRunning tests
Install dev dependencies:
$ npm install -d && npm testAuthor
Jon Schlinkert
License
Copyright © 2016, Jon Schlinkert. Released under the MIT license.
This file was generated by verb, v, on March 29, 2016.