-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpath.ts
36 lines (30 loc) · 884 Bytes
/
path.ts
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
const splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;
const posix = {};
function posixSplitPath(filename) {
return splitPathRe.exec(filename).slice(1);
}
export function dirname(path) {
const result = posixSplitPath(path),
root = result[0];
let dir = result[1];
if (!root && !dir) {
// No dirname whatsoever
return '.';
}
if (dir) {
// It has a dirname, strip trailing slash
dir = dir.substring(0, dir.length - 1);
}
return root + dir;
}
export function basename(path, ext?) {
let f = posixSplitPath(path)[2];
// TODO: make this comparison case-insensitive on windows?
if (ext && f.substring(-1 * ext.length) === ext) {
f = f.substring(0, f.length - ext.length);
}
return f;
}
export function extname(path) {
return posixSplitPath(path)[3];
}