mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-09 08:07:22 +00:00
push all website files
This commit is contained in:
25
website/functions/node_modules/fast-glob/out/adapters/fs.js
generated
vendored
Normal file
25
website/functions/node_modules/fast-glob/out/adapters/fs.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var path = require("path");
|
||||
var FileSystem = /** @class */ (function () {
|
||||
function FileSystem(options) {
|
||||
this.options = options;
|
||||
}
|
||||
/**
|
||||
* Return full path to entry.
|
||||
*/
|
||||
FileSystem.prototype.getFullEntryPath = function (filepath) {
|
||||
return path.resolve(this.options.cwd, filepath);
|
||||
};
|
||||
/**
|
||||
* Return an implementation of the Entry interface.
|
||||
*/
|
||||
FileSystem.prototype.makeEntry = function (stat, pattern) {
|
||||
return Object.assign(stat, {
|
||||
path: pattern,
|
||||
depth: pattern.split('/').length
|
||||
});
|
||||
};
|
||||
return FileSystem;
|
||||
}());
|
||||
exports.default = FileSystem;
|
Reference in New Issue
Block a user