summaryrefslogtreecommitdiff
path: root/tests/specs/future/unstable_flags/main.js
blob: 8cc8960d97810cf13e3fa4aeca45702e4c00b972 (plain)
1
2
3
4
5
console.log(typeof Deno.dlopen === "function"); // Undefined without `--unstable-ffi`
console.log(
  // Undefined without `--unstable-fs`
  Deno.build.os === "windows" ? true : typeof Deno.umask === "function",
);