summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_fs/_fs_fsync.ts
blob: 942aecf6a0bfa8a366f2038854676849ca8470c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

// TODO(petamoriken): enable prefer-primordials for node polyfills
// deno-lint-ignore-file prefer-primordials

import { CallbackWithError } from "ext:deno_node/_fs/_fs_common.ts";
import { FsFile } from "ext:deno_fs/30_fs.js";

export function fsync(
  fd: number,
  callback: CallbackWithError,
) {
  new FsFile(fd).sync().then(() => callback(null), callback);
}

export function fsyncSync(fd: number) {
  new FsFile(fd).syncSync();
}