support permission mode in mkdir (#4286)

This commit is contained in:
dubiousjim 2020-03-11 16:14:23 -04:00 committed by GitHub
parent 72c408ea9d
commit a28fa2415f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 28 additions and 14 deletions

View file

@ -740,7 +740,7 @@ declare namespace Deno {
recursive?: boolean;
/** Permissions to use when creating the directory (defaults to `0o777`,
* before the process's umask).
* Does nothing/raises on Windows. */
* Ignored on Windows. */
mode?: number;
}