2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-06-27 02:18:22 -04:00
|
|
|
|
|
|
|
// TODO(petamoriken): enable prefer-primordials for node polyfills
|
|
|
|
// deno-lint-ignore-file prefer-primordials
|
|
|
|
|
2023-03-08 06:44:54 -05:00
|
|
|
import { CallbackWithError } from "ext:deno_node/_fs/_fs_common.ts";
|
2024-01-24 09:12:22 -05:00
|
|
|
import { FsFile } from "ext:deno_fs/30_fs.js";
|
2023-02-14 11:38:45 -05:00
|
|
|
|
|
|
|
export function ftruncate(
|
|
|
|
fd: number,
|
|
|
|
lenOrCallback: number | CallbackWithError,
|
|
|
|
maybeCallback?: CallbackWithError,
|
|
|
|
) {
|
|
|
|
const len: number | undefined = typeof lenOrCallback === "number"
|
|
|
|
? lenOrCallback
|
|
|
|
: undefined;
|
|
|
|
const callback: CallbackWithError = typeof lenOrCallback === "function"
|
|
|
|
? lenOrCallback
|
|
|
|
: maybeCallback as CallbackWithError;
|
|
|
|
|
|
|
|
if (!callback) throw new Error("No callback function supplied");
|
|
|
|
|
2024-01-25 17:51:29 -05:00
|
|
|
new FsFile(fd, Symbol.for("Deno.internal.FsFile")).truncate(len).then(
|
|
|
|
() => callback(null),
|
|
|
|
callback,
|
|
|
|
);
|
2023-02-14 11:38:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export function ftruncateSync(fd: number, len?: number) {
|
2024-01-25 17:51:29 -05:00
|
|
|
new FsFile(fd, Symbol.for("Deno.internal.FsFile")).truncateSync(len);
|
2023-02-14 11:38:45 -05:00
|
|
|
}
|