Deno.OpenOptions.append - Deno documentation
property Deno.OpenOptions.append

Sets the option for the append mode. This option, when true, means that writes will append to a file instead of overwriting previous contents.

Note that setting { write: true, append: true } has the same effect as setting only { append: true }.

Type

boolean