deno_core 0.402.0

A modern JavaScript/TypeScript runtime built with V8, Rust, and Tokio
Documentation
1
2
3
4
5
6
7
8
9
// Copyright 2018-2026 the Deno authors. MIT license.
(function () {
const foo = "foo";
const bar = 123;
function blah(a) {
  Deno.core.print(a);
}
return { foo, bar, blah };
})();