mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
24 lines
504 B
TypeScript
24 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);
|
|
}
|