Created
March 21, 2014 18:32
-
-
Save Raynos/9692748 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _fs = process.binding('fs'); | |
var _close = _fs.close | |
_fs.close = function (fd, cb) { | |
console.log('closing', fd, new Error().stack) | |
_close.call(_fs, fd, cb) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment