Dailin 415ba84223 | hace 4 años | ||
---|---|---|---|
.. | |||
.travis.yml | hace 4 años | ||
LICENSE | hace 4 años | ||
README.md | hace 4 años | ||
index.js | hace 4 años | ||
package.json | hace 4 años | ||
test.js | hace 4 años |
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