mirror of
https://github.com/denoland/deno.git
synced 2024-11-04 08:54:20 -05:00
7 lines
196 B
JavaScript
7 lines
196 B
JavaScript
|
import { loadTestLibrary } from "../../../test_napi/common.js";
|
||
|
|
||
|
const lib = loadTestLibrary();
|
||
|
|
||
|
Deno.bench("warmup", () => {});
|
||
|
Deno.bench("napi_get_undefined", () => lib.test_get_undefined(0));
|