Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

31
node_modules/fast-glob/out/utils/path.js generated vendored Normal file
View 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;