aboutsummaryrefslogtreecommitdiff
path: root/node_modules/relateurl/lib/parse/path.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/relateurl/lib/parse/path.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/relateurl/lib/parse/path.js')
-rw-r--r--node_modules/relateurl/lib/parse/path.js100
1 files changed, 0 insertions, 100 deletions
diff --git a/node_modules/relateurl/lib/parse/path.js b/node_modules/relateurl/lib/parse/path.js
deleted file mode 100644
index 093c00c69..000000000
--- a/node_modules/relateurl/lib/parse/path.js
+++ /dev/null
@@ -1,100 +0,0 @@
-"use strict";
-
-function isDirectoryIndex(resource, options)
-{
- var verdict = false;
-
- options.directoryIndexes.every( function(index)
- {
- if (index === resource)
- {
- verdict = true;
- return false;
- }
-
- return true;
- });
-
- return verdict;
-}
-
-
-
-function parsePath(urlObj, options)
-{
- var path = urlObj.path.absolute.string;
-
- if (path)
- {
- var lastSlash = path.lastIndexOf("/");
-
- if (lastSlash > -1)
- {
- if (++lastSlash < path.length)
- {
- var resource = path.substr(lastSlash);
-
- if (resource!=="." && resource!=="..")
- {
- urlObj.resource = resource;
- path = path.substr(0, lastSlash);
- }
- else
- {
- path += "/";
- }
- }
-
- urlObj.path.absolute.string = path;
- urlObj.path.absolute.array = splitPath(path);
- }
- else if (path==="." || path==="..")
- {
- // "..?var", "..#anchor", etc ... not "..index.html"
- path += "/";
-
- urlObj.path.absolute.string = path;
- urlObj.path.absolute.array = splitPath(path);
- }
- else
- {
- // Resource-only
- urlObj.resource = path;
- urlObj.path.absolute.string = null;
- }
-
- urlObj.extra.resourceIsIndex = isDirectoryIndex(urlObj.resource, options);
- }
- // Else: query/hash-only or empty
-}
-
-
-
-function splitPath(path)
-{
- // TWEAK :: condition only for speed optimization
- if (path !== "/")
- {
- var cleaned = [];
-
- path.split("/").forEach( function(dir)
- {
- // Cleanup -- splitting "/dir/" becomes ["","dir",""]
- if (dir !== "")
- {
- cleaned.push(dir);
- }
- });
-
- return cleaned;
- }
- else
- {
- // Faster to skip the above block and just create an array
- return [];
- }
-}
-
-
-
-module.exports = parsePath;