mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
5cf97f539b
Remove `--allow-hrtime` and `--deny-hrtime`. We are doing this because it is already possible to get access to high resolution timers through workers and SharedArrayBuffer. Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
17 lines
575 B
JavaScript
17 lines
575 B
JavaScript
self.onmessage = async () => {
|
|
const env = await Deno.permissions.query({ name: "env" });
|
|
const ffi = await Deno.permissions.query({ name: "ffi" });
|
|
const net = await Deno.permissions.query({ name: "net" });
|
|
const read = await Deno.permissions.query({ name: "read" });
|
|
const run = await Deno.permissions.query({ name: "run" });
|
|
const write = await Deno.permissions.query({ name: "write" });
|
|
self.postMessage({
|
|
env: env.state,
|
|
ffi: ffi.state,
|
|
net: net.state,
|
|
read: read.state,
|
|
run: run.state,
|
|
write: write.state,
|
|
});
|
|
self.close();
|
|
};
|