Dailin 415ba84223 | il y a 3 ans | ||
---|---|---|---|
.. | |||
.travis.yml | il y a 3 ans | ||
LICENSE | il y a 3 ans | ||
README.md | il y a 3 ans | ||
index.js | il y a 3 ans | ||
package.json | il y a 3 ans | ||
test.js | il y a 3 ans |
Node.js
path.parse(pathString)
ponyfill.
$ npm install --save path-parse
var pathParse = require('path-parse');
pathParse('/home/user/dir/file.txt');
//=> {
// root : "/",
// dir : "/home/user/dir",
// base : "file.txt",
// ext : ".txt",
// name : "file"
// }
See path.parse(pathString)
docs.
The Posix specific version.
The Windows specific version.
MIT © Javier Blanco