Files
AdminLTE/src/utils/index.js
Cláudio Patrício b396e718aa Update index.js
Improved path conversion to allow any number of subpaths
2023-05-03 04:38:29 +01:00

13 lines
242 B
JavaScript

function convertPathToHtml(path) {
let htmlpath = ''
while (path.startsWith('../')) {
path = path.slice(3)
if (htmlpath.length < 2) htmlpath += '.'
else htmlpath += '/..'
}
return htmlpath
}
export { convertPathToHtml }