1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 04:52:26 -05:00
This commit is contained in:
Divy Srivastava 2024-12-15 08:58:30 +05:30
parent 9e7306ac7f
commit 9e37da438c

View file

@ -16,7 +16,7 @@ for (const name of [":memory:", "test.db"]) {
console.log(`Benchmarking ${name}`);
try {
fs.unlinkSync(name);
} catch (e) {
} catch {
// Ignore
}