in packages/web-ide-fs/src/browserfs/GitLabReadableFileSystem.ts [117:125]
public stat(path: string, isLstat: boolean, cb: BFSCallback<Stats>): void {
const fileEntry = this.#entries.get(path);
if (!fileEntry) {
return cb(ApiError.ENOENT(path));
}
cb(null, convertFileEntryToStats(fileEntry));
}