diff options
Diffstat (limited to 'bench/ffi/deno.js')
-rw-r--r-- | bench/ffi/deno.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bench/ffi/deno.js b/bench/ffi/deno.js index 8f4c76ca2..63ba6358c 100644 --- a/bench/ffi/deno.js +++ b/bench/ffi/deno.js @@ -1,10 +1,7 @@ import { run, bench, group } from "../node_modules/mitata/src/cli.mjs"; const extension = "darwin" !== Deno.build.os ? "so" : "dylib"; -const path = new URL( - "src/target/release/libffi_napi_bench." + extension, - import.meta.url, -).pathname; +const path = new URL("src/target/release/libffi_napi_bench." + extension, import.meta.url).pathname; const { symbols: { ffi_noop, ffi_hash, ffi_string }, |