-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpath-tools.js
70 lines (58 loc) · 1.8 KB
/
path-tools.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
var PathTools = (function() {
function getFilename(path) {
var split = path.split("/");
return split[split.length - 1];
}
function getFilenameNoExtension(path) {
var split = path.split("/");
var filename = split[split.length - 1];
var filenameSplit = filename.split(".");
return filenameSplit[0];
}
function getExtension(path) {
var split = path.split(".");
return split[split.length - 1];
}
function getParentDirectory(path) {
return path.substring(0, path.lastIndexOf("/"));
}
function isAbsolute(path) {
return path.indexOf(":") != -1;
}
function removePreceedingSlash(path) {
return path[0] == "/" ? path.substr(1) : path;
}
function removeQueryString(path) {
return path.split("?")[0];
}
function removeHash(path) {
return path.split("#")[0];
}
function urlToHttps(url) {
url = url.split(":")[1];
return "https:" + url;
}
//unfinished
function resolveRelativeUrl(url, base) {
base = base.replace(/\/$/, "");
if (/^\//.test(url)) {
return base + "/" + url.substr(1).replace(/\/$/, "");
}
if(/^\.\./.test(url)){
return resolveRelativeUrl(url.replace(/^\.\.\/?/,""), getParentDirectory(base))
}
return (base + "/" + url).replace(/\/$/,"");
}
return {
getFilename: getFilename,
getFilenameNoExtension: getFilenameNoExtension,
getExtension: getExtension,
getParentDirectory: getParentDirectory,
isAbsolute: isAbsolute,
removePreceedingSlash: removePreceedingSlash,
removeQueryString: removeQueryString,
removeHash: removeHash,
urlToHttps: urlToHttps,
resolveRelativeUrl : resolveRelativeUrl
};
})();