1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-12 02:27:46 -05:00
denoland-deno/cli/js/ops/fs/truncate.ts

28 lines
786 B
TypeScript
Raw Normal View History

2020-01-02 15:13:47 -05:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
2020-07-06 21:45:39 -04:00
import { sendSync, sendAsync } from "../dispatch_json.ts";
2018-09-30 15:06:20 -04:00
2019-08-26 10:18:42 -04:00
function coerceLen(len?: number): number {
2020-07-06 21:45:39 -04:00
if (len == null || len < 0) {
2019-08-26 10:18:42 -04:00
return 0;
}
return len;
}
export function ftruncateSync(rid: number, len?: number): void {
sendSync("op_ftruncate", { rid, len: coerceLen(len) });
}
export async function ftruncate(rid: number, len?: number): Promise<void> {
await sendAsync("op_ftruncate", { rid, len: coerceLen(len) });
}
export function truncateSync(path: string, len?: number): void {
sendSync("op_truncate", { path, len: coerceLen(len) });
2018-09-30 15:06:20 -04:00
}
export async function truncate(path: string, len?: number): Promise<void> {
await sendAsync("op_truncate", { path, len: coerceLen(len) });
2018-09-30 15:06:20 -04:00
}