mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
4774eab64d
Upgrade to rust 1.82 and LLVM 19 . Removes one webusb test because `requestAdapter` not working on new ubuntu 24 runners
5 lines
214 B
JavaScript
5 lines
214 B
JavaScript
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",
|
|
);
|