- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
50 lines
576 B
JavaScript
50 lines
576 B
JavaScript
"use strict";
|
|
|
|
function joinPath(pathArray)
|
|
{
|
|
if (pathArray.length > 0)
|
|
{
|
|
return pathArray.join("/") + "/";
|
|
}
|
|
else
|
|
{
|
|
return "";
|
|
}
|
|
}
|
|
|
|
|
|
|
|
function resolveDotSegments(pathArray)
|
|
{
|
|
var pathAbsolute = [];
|
|
|
|
pathArray.forEach( function(dir)
|
|
{
|
|
if (dir !== "..")
|
|
{
|
|
if (dir !== ".")
|
|
{
|
|
pathAbsolute.push(dir);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Remove parent
|
|
if (pathAbsolute.length > 0)
|
|
{
|
|
pathAbsolute.splice(pathAbsolute.length-1, 1);
|
|
}
|
|
}
|
|
});
|
|
|
|
return pathAbsolute;
|
|
}
|
|
|
|
|
|
|
|
module.exports =
|
|
{
|
|
join: joinPath,
|
|
resolveDotSegments: resolveDotSegments
|
|
};
|