blob: 39183be7fc8db187ab5ed4c3a9a306329fe07b2b (
plain)
1
2
3
4
5
6
7
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
mod js_runtime;
mod profiling;
pub use bencher;
pub use js_runtime::*;
pub use profiling::*; // Exports bench_or_profile! macro
|