2024-05-28 07:37:43 -04:00
|
|
|
console.log(typeof Deno.dlopen === "function"); // Undefined without `--unstable-ffi`
|
2024-05-27 19:43:07 -04:00
|
|
|
console.log(
|
|
|
|
// Undefined without `--unstable-fs`
|
|
|
|
Deno.build.os === "windows" ? true : typeof Deno.umask === "function",
|
|
|
|
);
|