summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_unlink.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/_fs/_fs_unlink.ts')
-rw-r--r--std/node/_fs/_fs_unlink.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/std/node/_fs/_fs_unlink.ts b/std/node/_fs/_fs_unlink.ts
deleted file mode 100644
index aba734fe1..000000000
--- a/std/node/_fs/_fs_unlink.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-export function unlink(path: string | URL, callback: (err?: Error) => void) {
- if (!callback) throw new Error("No callback function supplied");
- Deno.remove(path)
- .then((_) => callback())
- .catch(callback);
-}
-
-export function unlinkSync(path: string | URL) {
- Deno.removeSync(path);
-}