function writeBufferSyncimport { writeBufferSync } from "https://dotland.deno.dev/std@0.110.0/node/internal_binding/fs.ts"; writeBufferSync(fd: number,buffer: Uint8Array,offset: number,length: number,position: number | null,ctx: { errno?: number; },)Write to the given file from the given buffer synchronously. Write to the given file from the given buffer synchronously. Implements sync part of WriteBuffer in src/node_file.cc See: https://github.com/nodejs/node/blob/e9ed113/src/node_file.cc#L1818 Parametersfd: numberfile descriptor buffer: Uint8Arraythe data to write offset: numberwhere in the buffer to start from length: numberhow much to write position: number | nullif integer, position to write at in the file. if null, write from the current position ctx: { errno?: number; }context object for passing error number