mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
25 lines
504 B
TypeScript
25 lines
504 B
TypeScript
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
import { CallbackWithError } from "./_fs_common.ts";
|
||
|
|
||
|
export function close(fd: number, callback: CallbackWithError): void {
|
||
|
new Promise(async (resolve, reject) => {
|
||
|
try {
|
||
|
Deno.close(fd);
|
||
|
resolve();
|
||
|
} catch (err) {
|
||
|
reject(err);
|
||
|
}
|
||
|
})
|
||
|
.then(() => {
|
||
|
callback();
|
||
|
})
|
||
|
.catch(err => {
|
||
|
callback(err);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export function closeSync(fd: number): void {
|
||
|
Deno.close(fd);
|
||
|
}
|