We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05224d8 commit 15787d5Copy full SHA for 15787d5
mod.ts
@@ -2,4 +2,5 @@ export * from './json.ts'
2
export * from './csv.ts'
3
export * from './image.ts'
4
export * from './xlsx.ts'
5
-export * from './zip.ts'
+export * from './zip.ts'
6
+export * from './remove.ts'
remove.ts
@@ -0,0 +1,3 @@
1
+export async function removeFile(path: string) {
+ await Deno.remove(path)
+}
0 commit comments