summaryrefslogtreecommitdiff
path: root/tests/specs/future/unstable_flags/main.js
blob: 51af892f6bb80b616a86977ccf1f899ba6bf3323 (plain)
1
2
3
4
5
6
console.log(typeof await navigator.gpu.requestAdapter() === "object"); // Throws without `--unstable-gpu`
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",
);