mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
3 lines
107 B
TypeScript
3 lines
107 B
TypeScript
const file = await Deno.open("044_bad_resource.ts", { read: true });
|
|
file.close();
|
|
await file.seek(10, 0);
|