Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
LICENSE | D | 12-May-2024 | 1.1 KiB | 22 | 17 | |
README.md | D | 12-May-2024 | 871 | 43 | 27 | |
index.js | D | 12-May-2024 | 1.8 KiB | 76 | 56 | |
package.json | D | 12-May-2024 | 1.5 KiB | 63 | 62 |
README.md
1# path-parse [](https://travis-ci.org/jbgutierrez/path-parse) 2 3> Node.js [`path.parse(pathString)`](https://nodejs.org/api/path.html#path_path_parse_pathstring) [ponyfill](https://ponyfill.com). 4 5## Install 6 7``` 8$ npm install --save path-parse 9``` 10 11## Usage 12 13```js 14var pathParse = require('path-parse'); 15 16pathParse('/home/user/dir/file.txt'); 17//=> { 18// root : "/", 19// dir : "/home/user/dir", 20// base : "file.txt", 21// ext : ".txt", 22// name : "file" 23// } 24``` 25 26## API 27 28See [`path.parse(pathString)`](https://nodejs.org/api/path.html#path_path_parse_pathstring) docs. 29 30### pathParse(path) 31 32### pathParse.posix(path) 33 34The Posix specific version. 35 36### pathParse.win32(path) 37 38The Windows specific version. 39 40## License 41 42MIT © [Javier Blanco](http://jbgutierrez.info) 43