1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/std/node/_fs/_fs_unlink.ts

10 lines
295 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())
.catch(callback);
}
export function unlinkSync(path: string | URL) {
Deno.removeSync(path);
}