aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-01 14:34:51 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-01 14:34:51 -0700
commitf9f169bb9e53afb6d9d8978ffdd4939d3033a6e8 (patch)
treec01738d23f4c65d2859c82b43f688d3b06626dc6
parent2fe27fdeea2d805383bd30bfe9883115712a4df0 (diff)
downloadbun-f9f169bb9e53afb6d9d8978ffdd4939d3033a6e8.tar.gz
bun-f9f169bb9e53afb6d9d8978ffdd4939d3033a6e8.tar.zst
bun-f9f169bb9e53afb6d9d8978ffdd4939d3033a6e8.zip
Fix #1410
woops
-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.