@componentor/fs 3.0.33 → 3.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -4662,8 +4662,11 @@ var VFSEngine = class {
4662
4662
  // ---- LSTAT (no symlink follow for the FINAL component) ----
4663
4663
  lstat(path) {
4664
4664
  path = this.normalizePath(path);
4665
- const idx = this.resolvePathComponents(path, false);
4666
- if (idx === void 0) return { status: CODE_TO_STATUS.ENOENT, data: null };
4665
+ let idx = this.resolvePathComponents(path, false);
4666
+ if (idx === void 0) {
4667
+ idx = this.resolvePathComponents(path, true);
4668
+ if (idx === void 0) return { status: CODE_TO_STATUS.ENOENT, data: null };
4669
+ }
4667
4670
  return this.encodeStatResponse(idx);
4668
4671
  }
4669
4672
  encodeStatResponse(idx) {