mirror of
https://github.com/valitydev/rbk-templator.git
synced 2024-11-06 16:55:16 +00:00
6 lines
191 B
JavaScript
6 lines
191 B
JavaScript
module.exports = function (path) {
|
|
if (path && path.lastIndexOf("/") === (path.length - 1))
|
|
path = path.substring(0, path.lastIndexOf("/"));
|
|
return path ? path + "/" : "";
|
|
};
|