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