Initial commit
This commit is contained in:
31
node_modules/fast-glob/out/utils/path.js
generated
vendored
Normal file
31
node_modules/fast-glob/out/utils/path.js
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var path = require("path");
|
||||
/**
|
||||
* Returns «true» if the last partial of the path starting with a period.
|
||||
*/
|
||||
function isDotDirectory(filepath) {
|
||||
return path.basename(filepath).startsWith('.');
|
||||
}
|
||||
exports.isDotDirectory = isDotDirectory;
|
||||
/**
|
||||
* Return naive depth of provided filepath.
|
||||
*/
|
||||
function getDepth(filepath) {
|
||||
return filepath.split('/').length;
|
||||
}
|
||||
exports.getDepth = getDepth;
|
||||
/**
|
||||
* Return resolved a sequence of paths segments into an absolute path.
|
||||
*/
|
||||
function resolve(from, to) {
|
||||
return path.resolve(from, to);
|
||||
}
|
||||
exports.resolve = resolve;
|
||||
/**
|
||||
* Convert a windows-like path to a unix-style path.
|
||||
*/
|
||||
function normalize(filepath) {
|
||||
return filepath.replace(/\\/g, '/');
|
||||
}
|
||||
exports.normalize = normalize;
|
||||
Reference in New Issue
Block a user