@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.
@@ -891,8 +891,11 @@ var VFSEngine = class {
891
891
  // ---- LSTAT (no symlink follow for the FINAL component) ----
892
892
  lstat(path) {
893
893
  path = this.normalizePath(path);
894
- const idx = this.resolvePathComponents(path, false);
895
- if (idx === void 0) return { status: CODE_TO_STATUS.ENOENT, data: null };
894
+ let idx = this.resolvePathComponents(path, false);
895
+ if (idx === void 0) {
896
+ idx = this.resolvePathComponents(path, true);
897
+ if (idx === void 0) return { status: CODE_TO_STATUS.ENOENT, data: null };
898
+ }
896
899
  return this.encodeStatResponse(idx);
897
900
  }
898
901
  encodeStatResponse(idx) {