Skip to content

Commit c7020d1

Browse files
wip(core): avoid useless await
1 parent 8c806cf commit c7020d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function defaultGetResource(pathCx : PathContext, options : Options) : Resource
6363
return {
6464
id: path,
6565
path: path,
66-
getContent: async () => await getFile(path),
66+
getContent: () => getFile(path),
6767
};
6868
}
6969

0 commit comments

Comments
 (0)