2016-11-17 15:33:02 -02:00
|
|
|
const absolutePath = new RegExp('^(?:[a-z]+:)?//', 'i');
|
2020-01-15 00:15:14 +02:00
|
|
|
const normalizePath = (path: string) => path.replace(/[\\/]+/g, '/');
|
2016-11-17 15:33:02 -02:00
|
|
|
|
2020-01-15 00:15:14 +02:00
|
|
|
export function isAbsolutePath(path: string) {
|
2019-12-18 18:16:02 +02:00
|
|
|
return absolutePath.test(path);
|
2019-08-24 21:03:09 +01:00
|
|
|
}
|
|
|
|
|
2017-01-10 22:23:22 -02:00
|
|
|
/**
|
|
|
|
* Return the last portion of a path. Similar to the Unix basename command.
|
|
|
|
* @example Usage example
|
|
|
|
* path.basename('/foo/bar/baz/asdf/quux.html')
|
|
|
|
* // returns
|
|
|
|
* 'quux.html'
|
|
|
|
*
|
|
|
|
* path.basename('/foo/bar/baz/asdf/quux.html', '.html')
|
|
|
|
* // returns
|
|
|
|
* 'quux'
|
|
|
|
*/
|
2020-01-15 00:15:14 +02:00
|
|
|
export function basename(p: string, ext = '') {
|
2017-01-10 22:23:22 -02:00
|
|
|
// Special case: Normalize will modify this to '.'
|
|
|
|
if (p === '') {
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
// Normalize the string first to remove any weirdness.
|
|
|
|
p = normalizePath(p);
|
|
|
|
// Get the last part of the string.
|
|
|
|
const sections = p.split('/');
|
|
|
|
const lastPart = sections[sections.length - 1];
|
|
|
|
// Special case: If it's empty, then we have a string like so: foo/
|
|
|
|
// Meaning, 'foo' is guaranteed to be a directory.
|
|
|
|
if (lastPart === '' && sections.length > 1) {
|
|
|
|
return sections[sections.length - 2];
|
|
|
|
}
|
|
|
|
// Remove the extension, if need be.
|
|
|
|
if (ext.length > 0) {
|
|
|
|
const lastPartExt = lastPart.substr(lastPart.length - ext.length);
|
|
|
|
if (lastPartExt === ext) {
|
|
|
|
return lastPart.substr(0, lastPart.length - ext.length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return lastPart;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the extension of the path, from the last '.' to end of string in the
|
|
|
|
* last portion of the path. If there is no '.' in the last portion of the path
|
|
|
|
* or the first character of it is '.', then it returns an empty string.
|
|
|
|
* @example Usage example
|
2017-04-14 19:19:45 +01:00
|
|
|
* path.fileExtensionWithSeparator('index.html')
|
2017-01-10 22:23:22 -02:00
|
|
|
* // returns
|
|
|
|
* '.html'
|
|
|
|
*/
|
2020-01-15 00:15:14 +02:00
|
|
|
export function fileExtensionWithSeparator(p: string) {
|
2017-01-10 22:23:22 -02:00
|
|
|
p = normalizePath(p);
|
|
|
|
const sections = p.split('/');
|
2020-01-15 00:15:14 +02:00
|
|
|
p = sections.pop() as string;
|
2017-01-10 22:23:22 -02:00
|
|
|
// Special case: foo/file.ext/ should return '.ext'
|
|
|
|
if (p === '' && sections.length > 0) {
|
2020-01-15 00:15:14 +02:00
|
|
|
p = sections.pop() as string;
|
2017-01-10 22:23:22 -02:00
|
|
|
}
|
|
|
|
if (p === '..') {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
const i = p.lastIndexOf('.');
|
|
|
|
if (i === -1 || i === 0) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return p.substr(i);
|
|
|
|
}
|
2017-04-14 19:19:45 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the extension of the path, from after the last '.' to end of string in the
|
|
|
|
* last portion of the path. If there is no '.' in the last portion of the path
|
|
|
|
* or the first character of it is '.', then it returns an empty string.
|
|
|
|
* @example Usage example
|
|
|
|
* path.fileExtension('index.html')
|
|
|
|
* // returns
|
|
|
|
* 'html'
|
|
|
|
*/
|
2020-01-15 00:15:14 +02:00
|
|
|
export function fileExtension(p: string) {
|
2017-04-14 19:19:45 +01:00
|
|
|
const ext = fileExtensionWithSeparator(p);
|
|
|
|
return ext === '' ? ext : ext.substr(1);
|
|
|
|
}
|