mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
|
|
module.exports = {
|
|
'basename' : function(path) {
|
|
var parts = path.split('/');
|
|
parts.pop();
|
|
path = parts.join('/');
|
|
return path;
|
|
}
|
|
}; |