function Deno.chmodSync
chmodSync(path: string | URL,mode: number,): void
Synchronously changes the permission of a specific file/directory of
specified path. Ignores the process's umask.
```ts
Deno.chmodSync("/path/to/file", 0o666);
```
For a full description, see [`Deno.chmod`](../././~/Deno.chmod).
NOTE: This API currently throws on Windows
Requires `allow-write` permission.
void