aboutsummaryrefslogtreecommitdiff
path: root/node_modules/fast-glob/out/adapters/fs.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/fast-glob/out/adapters/fs.js')
-rw-r--r--node_modules/fast-glob/out/adapters/fs.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/node_modules/fast-glob/out/adapters/fs.js b/node_modules/fast-glob/out/adapters/fs.js
new file mode 100644
index 0000000..9a3da96
--- /dev/null
+++ b/node_modules/fast-glob/out/adapters/fs.js
@@ -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;