aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bun.js/fs_promises.exports.js6
1 files changed, 0 insertions, 6 deletions
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.