mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
10 lines
295 B
TypeScript
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);
|
|
}
|