This commit is contained in:
Ryan Dahl 2018-09-02 01:59:16 -04:00
parent f949ded933
commit 787832c68e
6 changed files with 37 additions and 20 deletions

View file

@ -36,7 +36,7 @@ function permFromString(s: string): DenoPermissions {
return {
write: Boolean(Number(found[1])),
net: Boolean(Number(found[2])),
env: Boolean(Number(found[3])),
env: Boolean(Number(found[3]))
};
}