José Quiñones Flores 4564da0130 Added Laravel project and removed sensitive data | пре 4 година | |
---|---|---|
.. | ||
.travis.yml | пре 4 година | |
README.md | пре 4 година | |
index.js | пре 4 година | |
index.min.js | пре 4 година | |
package.json | пре 4 година | |
test.js | пре 4 година | |
test.min.js | пре 4 година |
Node.js
path.parse(pathString)
ponyfill.Ponyfill: A polyfill that doesn’t overwrite the native method
$ 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