Skip to main content
function truncate
truncate(
path: PathLike,
len?: number,
): Promise<void>
Deprecated

Truncates (shortens or extends the length) of the content at path to len bytes.

Parameters

path: PathLike
optional
len: number = 0

Return Type

Promise<void>

Fulfills with undefined upon success.

Back to top