aboutsummaryrefslogtreecommitdiff
path: root/node_modules/relateurl/lib/relate/relativize.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/relate/relativize.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/relateurl/lib/relate/relativize.js')
-rw-r--r--node_modules/relateurl/lib/relate/relativize.js67
1 files changed, 0 insertions, 67 deletions
diff --git a/node_modules/relateurl/lib/relate/relativize.js b/node_modules/relateurl/lib/relate/relativize.js
deleted file mode 100644
index 9af9a1017..000000000
--- a/node_modules/relateurl/lib/relate/relativize.js
+++ /dev/null
@@ -1,67 +0,0 @@
-"use strict";
-
-var pathUtils = require("../util/path");
-
-
-
-/*
- Get a path relative to the site path.
-*/
-function relatePath(absolutePath, siteAbsolutePath)
-{
- var relativePath = [];
-
- // At this point, it's related to the host/port
- var related = true;
- var parentIndex = -1;
-
- // Find parents
- siteAbsolutePath.forEach( function(siteAbsoluteDir, i)
- {
- if (related)
- {
- if (absolutePath[i] !== siteAbsoluteDir)
- {
- related = false;
- }
- else
- {
- parentIndex = i;
- }
- }
-
- if (!related)
- {
- // Up one level
- relativePath.push("..");
- }
- });
-
- // Form path
- absolutePath.forEach( function(dir, i)
- {
- if (i > parentIndex)
- {
- relativePath.push(dir);
- }
- });
-
- return relativePath;
-}
-
-
-
-function relativize(urlObj, siteUrlObj, options)
-{
- if (urlObj.extra.relation.minimumScheme)
- {
- var pathArray = relatePath(urlObj.path.absolute.array, siteUrlObj.path.absolute.array);
-
- urlObj.path.relative.array = pathArray;
- urlObj.path.relative.string = pathUtils.join(pathArray);
- }
-}
-
-
-
-module.exports = relativize;