25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

42 satır
871 B

4 yıl önce
  1. # path-parse [![Build Status](https://travis-ci.org/jbgutierrez/path-parse.svg?branch=master)](https://travis-ci.org/jbgutierrez/path-parse)
  2. > Node.js [`path.parse(pathString)`](https://nodejs.org/api/path.html#path_path_parse_pathstring) [ponyfill](https://ponyfill.com).
  3. ## Install
  4. ```
  5. $ npm install --save path-parse
  6. ```
  7. ## Usage
  8. ```js
  9. var pathParse = require('path-parse');
  10. pathParse('/home/user/dir/file.txt');
  11. //=> {
  12. // root : "/",
  13. // dir : "/home/user/dir",
  14. // base : "file.txt",
  15. // ext : ".txt",
  16. // name : "file"
  17. // }
  18. ```
  19. ## API
  20. See [`path.parse(pathString)`](https://nodejs.org/api/path.html#path_path_parse_pathstring) docs.
  21. ### pathParse(path)
  22. ### pathParse.posix(path)
  23. The Posix specific version.
  24. ### pathParse.win32(path)
  25. The Windows specific version.
  26. ## License
  27. MIT © [Javier Blanco](http://jbgutierrez.info)