deno_core 0.307.0

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