mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
21 lines
287 B
TypeScript
21 lines
287 B
TypeScript
const permissions: Deno.PermissionName[] = [
|
|
"read",
|
|
"write",
|
|
"net",
|
|
"env",
|
|
"run",
|
|
"ffi",
|
|
"hrtime",
|
|
];
|
|
|
|
for (const name of permissions) {
|
|
Deno.bench({
|
|
name,
|
|
permissions: {
|
|
[name]: true,
|
|
},
|
|
fn() {
|
|
throw new Error("unreachable");
|
|
},
|
|
});
|
|
}
|