From f9f169bb9e53afb6d9d8978ffdd4939d3033a6e8 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Tue, 1 Nov 2022 14:34:51 -0700 Subject: Fix #1410 woops --- src/bun.js/fs_promises.exports.js | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/bun.js') diff --git a/src/bun.js/fs_promises.exports.js b/src/bun.js/fs_promises.exports.js index 6f15565a4..33034554f 100644 --- a/src/bun.js/fs_promises.exports.js +++ b/src/bun.js/fs_promises.exports.js @@ -1,11 +1,5 @@ var fs = Bun.fs(); -var _stat = fs.statSync; -fs.statSync = function (path) { - console.trace("stat", path); - return _stat(path); -}; - // note: this is not quite the same as how node does it // in some cases, node swaps around arguments or makes small tweaks to the return type // this is just better than nothing. -- cgit v1.2.3