@componentor/fs 3.0.26 → 3.0.28

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.
@@ -938,8 +938,7 @@ var VFSEngine = class {
938
938
  const mode = DEFAULT_DIR_MODE & ~(this.umask & 511);
939
939
  this.createInode(path, INODE_TYPE.DIRECTORY, mode, 0);
940
940
  this.commitPending();
941
- const pathBytes = encoder.encode(path);
942
- return { status: 0, data: pathBytes };
941
+ return { status: 0, data: null };
943
942
  }
944
943
  mkdirRecursive(path) {
945
944
  const parts = path.split("/").filter(Boolean);