1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 06:46:59 -05:00
denoland-deno/std/node/_fs/_fs_unlink.ts

8 lines
279 B
TypeScript

export function unlink(path: string | URL, callback: (err?: Error) => void) {
if (!callback) throw new Error("No callback function supplied");
Deno.remove(path).then((_) => callback(), callback);
}
export function unlinkSync(path: string | URL) {
Deno.removeSync(path);
}